stata.get | R Documentation |
Reads a file in Stata version 5-11 binary format format into a data frame.
stata.get(file, lowernames = FALSE, convert.dates = TRUE,
convert.factors = TRUE, missing.type = FALSE,
convert.underscore = TRUE, warn.missing.labels = TRUE,
force.single = TRUE, allow=NULL, charfactor=FALSE, ...)
file |
input SPSS save file. May be a file on the WWW, indicated
by |
lowernames |
set to |
convert.dates |
see |
convert.factors |
see |
missing.type |
see |
convert.underscore |
see |
warn.missing.labels |
see |
force.single |
set to |
allow |
a vector of characters allowed by R that should not be converted to periods in variable names. By default, underscores in variable names are converted to periods as with R before version 1.9. |
charfactor |
set to |
... |
arguments passed to |
stata.get
invokes the read.dta
function in the
foreign package to read an STATA file, with a default output
format of data.frame
. The label
function is used to
attach labels to individual variables instead of to the data frame as
done by read.dta
. By default, integer-valued variables are
converted to a storage mode of integer unless
force.single=FALSE
. Date variables are converted to R
Date
variables. By default, underscores in names are converted to periods.
A data frame
Charles Dupont
read.dta
,cleanup.import
,label
,data.frame
,Date
## Not run:
w <- stata.get('/tmp/my.dta')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.