View source: R/MixedModelWrite.R
MixedModelWrite | R Documentation |
Write the fixed effects of a given and the description information of a given data out to your disk. The out-put files will be in your working directory.
MixedModelWrite(Model = NULL, Data = NULL, Prefix = 'DV',...)
Model |
A model of which the fixed effects are to be written out. |
Data |
A data of which the description information is to be written out. |
Prefix |
Prefix of the written-out files. A character element. |
... |
Other parameters needed to be put into the MixedModelDataSummary(). |
## Example :
Model = lmer(data = DemoData, DV~CondA+(1|subj)+(1|item))
MixedModelWrite(Model = Model, Data = DemoData, DV = 'DV',Cond = 'CondA,CondB', Group = 'subj')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.