[R] Import SPSS file to R

2009-10-19 Thread Suman Kundu
Hello,   In R, How to read SPSS file and access the data item? Thank you. Regards, Suman Kundu [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the

Re: [R] Import SPSS file to R

2009-10-19 Thread Chuck Cleland
On 10/19/2009 8:06 AM, Suman Kundu wrote: Hello, In R, How to read SPSS file and access the data item? RSiteSearch('SPSS', restrict='function') Thank you. Regards, Suman Kundu [[alternative HTML version deleted]]

Re: [R] Import SPSS file to R

2009-10-19 Thread Jorge Ivan Velez
Hi Suman, See the read.spss function in the foreign package, e.g.: # install.packages(foreign) require(foreign) ?read.spss HTH, Jorge On Mon, Oct 19, 2009 at 8:06 AM, Suman Kundu wrote: Hello, In R, How to read SPSS file and access the data item? Thank you. Regards, Suman Kundu

Re: [R] Import SPSS file to R

2009-10-19 Thread Orvalho Augusto
Or even install.packages(Hmisc) library(Hmisc) then use spss.get Actually spss.get uses read.spss from foreign package but with common default options. Caveman On Mon, Oct 19, 2009 at 3:18 PM, Jorge Ivan Velez jorgeivanve...@gmail.com wrote: Hi Suman, See the read.spss function in the