ez (version 4.4-0)

ezMixedProgress: Retrieve information saved to file by a call to ezMixed

Description

When running ezMixed with a value supplied to the progress_dir argument, summary results are saved to file. ezMixedProgress retrieves those results, even from partial or discontinued runs.

Usage

ezMixedProgress( progress_dir , return_models = TRUE )

Arguments

progress_dir
Character string specifying the name of the progress directory. (Should match the string supplied as the value to the progress_dir argument in the original call to ezMixed)
return_models
Logical. If TRUE, the returned list object will also include each lmer model (can become memory intensive for complex models and/or large data sets).

Value

A list with the following elements: A list with the following elements:

See Also

ezMixed

Examples

Run this code
## Not run: 
# #Read in the ANT data (see ?ANT).
# data(ANT)
# head(ANT)
# ezPrecis(ANT)
# 
# #Run ezMixed on the accurate RT data
# rt_mix = ezMixed(
#     data = ANT[ANT$error==0,]
#     , dv = .(rt)
#     , random = .(subnum)
#     , fixed = .(cue,flank,group)
#     , progress_dir = 'rt_mix'
# )
# 
# rt_mix = ezMixedProgress('rt_mix')
# print(rt_mix$summary)
# ## End(Not run)

Run the code above in your browser using DataLab