Import data from other statistical software packages
Import data from SPSS, SAS or Stata, including NA's, value and variable labels.
read_spss( path, atomic.to.fac = FALSE, drop.labels = FALSE, tag.na = FALSE, enc = NULL, verbose = FALSE ) read_sas( path, path.cat = NULL, atomic.to.fac = FALSE, drop.labels = FALSE, enc = NULL, verbose = FALSE ) read_stata( path, atomic.to.fac = FALSE, drop.labels = FALSE, enc = NULL, verbose = FALSE ) read_data( path, atomic.to.fac = FALSE, drop.labels = FALSE, enc = NULL, verbose = FALSE )
path |
File path to the data file. |
atomic.to.fac |
Logical, if |
drop.labels |
Logical, if |
tag.na |
Logical, if |
enc |
The character encoding used for the file. This defaults to the encoding specified in the file, or UTF-8. Use this argument to override the default encoding stored in the file. |
verbose |
Logical, if |
path.cat |
Optional, the file path to the SAS catalog file. |
These read-functions behave slightly differently from haven's read-functions:
The vectors in the returned data frame are of class atomic
, not of class labelled
. The labelled-class might cause issues with other packages.
When importing SPSS data, variables with user defined missings won't be read into labelled_spss
objects, but imported as tagged NA values.
The atomic.to.fac
option only
converts those variables into factors that are of class atomic
and
which have value labels after import. Atomic vectors without value labels
are considered as continuous and not converted to factors.
A data frame containing the imported, labelled data. Retrieve value labels with
get_labels
and variable labels with get_label
.
These are wrapper functions for haven's read_*
-functions.
Vignette Labelled Data and the sjlabelled-Package.
## Not run: # import SPSS data set. uses haven's read function mydat <- read_spss("my_spss_data.sav") # use haven's read function, convert atomic to factor mydat <- read_spss("my_spss_data.sav", atomic.to.fac = TRUE) # retrieve variable labels mydat.var <- get_label(mydat) # retrieve value labels mydat.val <- get_labels(mydat) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.