Displaying 1 result from an estimated 1 matches for "sassmalldataset".
2010 Mar 25
1
Read SAS data
Hi!
I need to import in R some SAS dataset (sas7bdat). I found two functions to
do it:
"read.ssd" from the package "foreign" and "sas.get" from "Hmisc".
df = read.ssd(libname = path2data, sectionnames = "sasSmallDataset",
tmpXport = path2data, tmpProgLoc = path2data, sascmd = path2sas)
sas.get(libraryName = path2data, member = "sasSmallDataset", formats =
FALSE, sasprog = path2sas, keep.log = TRUE)
where path2data is the directory on which is contained the file sas,
sasSmallDataset.sas7bdat are the...