Wednesday, August 30, 2017

How to import SPSS data (.sav) file into R.
https://www.r-bloggers.com/how-to-open-an-spss-file-into-r/

library(foreign)
dataset = read.spss(file.choose(), to.data.frame=TRUE)

To view the data set.
View(dataset)

09/16/2017
I stumbled across a newer package for importing and exporting data. It's called rio.

Links to package information:
https://cran.r-project.org/web/packages/rio/index.html

https://cran.r-project.org/web/packages/rio/vignettes/rio.html

https://cran.r-project.org/web/packages/rio/README.html

Installing rio:
> install.packages("rio", dependencies = TRUE)
> library("rio")

Importing a file:
> dataFile = import(file.choose())

No comments:

Post a Comment

Thank you for your comments.