Skip to content
Prev 70576 / 398525 Next

read.spss trouble

On Sat, 2005-05-28 at 13:23 +0000, Martin Klaffenboeck wrote:
The official language is English.
read.spss() is part of the "foreign" package, which is installed as part
of the base R installation, but it is not loaded by default.

Thus, you need to use:

 library(foreign)
 read.spss(...)

See ?library and page 74 in "An Introduction to R".

HTH,

Marc Schwartz