Displaying 4 results from an estimated 4 matches for "tmpprog".
Did you mean:
myprog
2007 Apr 23
0
Correction to PR #9631 (PR#9632)
...TENTS to retrieve the full-length column names and then
assign them as the column names of the returned data.frames, but that seems to
be more effort than its worth.
read.ssd <- function(libname,
sectionnames,
tmpXport = tempfile(),
tmpProgLoc = tempfile(),
sascmd = "sas"){
tmpFiles <- tmpXport
on.exit(unlink(tmpFiles))
logGuess <- function(x){
expl <- strsplit(x, "")[[1]]
rex <- rev(expl)
br <- match("/", rex)[1]
if(is.na(br))
return(x)...
2007 Oct 09
2
read sas data into R
...s kept. The message that R gives me is this:
*SAS failed. SAS program at
C:\DOCUME~1\Royerm02\LOCALS~1\Temp\Rtmpdi2Osb\file4ff053f7.sas
The log file will be file4ff053f7.log in the current directory
NULL
Warning messages:
1: "C:/Mary/Datasets /sas.exe" not found in: system(paste(sascmd, tmpProg))
2: SAS return code was -1 in: read.ssd(file.path("C:/Mary/Datasets",
>
*
what do I do? The help for read.ssd does not help either. So any help will
be greatly appreciated.
Mary
[[alternative HTML version deleted]]
2008 Jun 26
2
Read sas7bdat
...ng this sintax in r:
> read.ssd("X:\\users\\Anresc07","que0411.sas7bdat")
SAS failed. SAS program at
C:\DOCUME~1\leandro\CONFIG~1\Temp\RtmpXR1Tid\file3d6c4ae1.sas
The log file will be file3d6c4ae1.log in the current directory
NULL
Warning messages:
1: In system(paste(sascmd, tmpProg)) : "sas" n?o encontrado
2: In read.ssd("X:\\users\\Anresc07", "que0411.sas7bdat") :
SAS return code was -1
>
Do you know what i can do to solve that?
Thanks a lot!
Best regards,
Atenciosamente,
Leandro Lins Marino
Centro de Avalia??o
Funda??o CESGRANRIO
R...
2008 Dec 03
2
reading version 9 SAS datasets in R
...; ?read.ssd
> fadata2 <- read.ssd("D:\\CES Analysis\\Data", "fadata")
SAS failed. SAS program at
D:\DOCUME~1\re06572\LOCALS~1\Temp\RtmpLqCVUx\file72ae2cd6.sas
The log file will be file72ae2cd6.log in the current directory
Warning messages:
1: In system(paste(sascmd, tmpProg)) : "sas" not found
2: In read.ssd("D:\\CES Analysis\\Data", "fadata") :
SAS return code was -1
> sashome <- "C:\\Program Files\\SAS\\SAS 9.1"
> fadata2 <- read.ssd(file.path(sashome, "core", "sashelp"), "fadata"...