View source: R/dataframe2txt.R
data.frame2txt | R Documentation |
Export a data.frame to a tab delimited text and create R and SPSS/PSPP scripts to input the data again.
data.frame2txt(x, datafile = "x.txt", r.codefile = "x.R",
sps.codefile = "x.sps", df.name = "x",
user.missing)
x |
The data.frame to be exported. |
datafile |
The name of the tab delimited file to be created. |
r.codefile |
The name of the R script to read the data file. |
sps.codefile |
The name of the SPSS/PSPP script to read the data file. |
df.name |
The name of the data.frame object to be created by the R script. |
user.missing |
Labels of levels that must be coded as user missing in the sps script. |
Logical vectors are converted into numeric before being saved.
The return value of write.table
.
Jakson A. Aquino jalvesaq@gmail.com
## Not run:
data(CO2)
data.frame2txt(CO2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.