write_dat {holland} | R Documentation |
writing R matrix objects as .dat text files
Description
this function writes R matrix objects as .dat text files to be read by Mplus.
Usage
write_dat(ob, file = paste(deparse(substitute(ob)), ".dat", sep = ""), ...)
Arguments
ob |
the R-object to be written as .dat file. |
file |
optionally the name of the .dat file as character - default is 'objectname'.dat. |
... |
additional parameters passed through. |
Details
no details.
Value
a .dat text file by default written in the current workspace directory.
Examples
## writing R-object example1 as example1.dat
## Not run:
data(example1)
write_dat(example1)
## End(Not run)
[Package holland version 0.1.2-1 Index]