Learn R Programming

haven (version 0.1.1)

write_dta: Read and write Stata DTA files.

Description

Currently haven can read and write logical, integer, numeric, character and factors. See labelled for how labelled variables in Stata are handled in R.

Usage

write_dta(data, path)

read_dta(path)

Arguments

data
Data frame to write.
path
Path to data. When reading data, if the path is a URL, the file will be first downloaded to a temporary location before reading.

Value

  • A data frame with additional "tbl_df" and "tbl" classes, which improve printing if dplyr is loaded.

    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.

Examples

Run this code
tmp <- tempfile(fileext = ".sav")
write_dta(mtcars, tmp)
read_dta(tmp)

Run the code above in your browser using DataLab