read_spss {haven} | R Documentation |
Currently haven can read and write logical, integer, numeric, character
and factors. See labelled_spss
for how labelled variables in
Stata are handled in R. read_spss
is an alias for read_sav
.
read_sav(file, user_na = FALSE) read_por(file, user_na = FALSE) write_sav(data, path) read_spss(file, user_na = FALSE)
file |
Either a path to a file, a connection, or literal data (either a single string or a raw vector). Files ending in Literal data is most useful for examples and tests. It must contain at least one new line to be recognised as data (instead of a path). |
user_na |
If |
data |
Data frame to write. |
path |
Path to a file where the data will be written. |
A tibble, data frame variant with nice defaults.
Variable labels are stored in the "label" attribute of each variable. It is not printed on the console, but the RStudio viewer will show it.
path <- system.file("examples", "iris.sav", package = "haven") read_sav(path) tmp <- tempfile(fileext = ".sav") write_sav(mtcars, tmp) read_sav(tmp)