search for: libref

Displaying 7 results from an estimated 7 matches for "libref".

Did you mean: libre
2005 Sep 26
1
reading SAS data files
...Licensed to UNIV OF CA/DAVIS, Site 0029107010. NOTE: This session is executing on the XP_PRO platform. NOTE: SAS initialization used: real time 0.13 seconds cpu time 0.18 seconds 1 libname src2rd '/Program Files/SAS/SAS 9.1'; NOTE: Libref SRC2RD was successfully assigned as follows: Engine: V9 Physical Name: C:\Program Files\SAS\SAS 9.1 2 libname rd xport 'C:\DOCUME~1\DSONNE~1\LOCALS~1\Temp\Rtmp3540\file26090'; NOTE: Libref RD was successfully assigned as follows: Engine: XPORT...
2011 Mar 06
1
read.ssd() from foreign package
Hi, I am encountering a confusing problem when I tried to use read.ssd to read SAS datasets. For one SAS dataset "a.sas7bdat", it did not work; while for another SAS dataset "b.sas7bdat" it worked: > tmp<-read.ssd("C:\\SASdata", "a",sascmd="C:/Program >Files/SAS/SASFoundation/9.2/sas.exe") SAS failed. SAS program at
2002 Dec 21
2
Part II Re: read.ssd {foreign} (Reading a permanent SAS d ataset into an R data frame)
>>>>> "Stephen" == Stephen Arthur <sarthur67 at yahoo.com> writes: Stephen> The SAS data set I PROC CPORTed is [9] the result is [10]. Stephen> I PROC CIMPORTed [10] back to its orginal state [9], and it Stephen> worked. Stephen> So the SAS people think that the error is not with the SAS Stephen> XPORT file, but with R trying to load a text
2008 Dec 03
2
reading version 9 SAS datasets in R
...s as this method creates a SAS version 6 transport file. libname to_r xport 'D:\CES Analysis\Data\fadata2.xpt'; data to_r.fadata2; set ces2.fadata; run; But I get an error message in the SAS log: 493 libname to_r xport 'D:\CES Analysis\Data\fadata2.xpt'; NOTE: Libref TO_R was successfully assigned as follows: Engine: XPORT Physical Name: D:\CES Analysis\Data\fadata2.xpt 494 495 data to_r.fadata2; 496 set ces2.fadata; 497 run; ERROR: The variable name BUS_TEL_N is illegal for the version 6 file TO_R.FADATA2.DATA. NOTE: The SAS...
2007 Dec 27
0
SAS to R - if you have SAS 8.2+
...uageService <- obSAS[["LanguageService"]] # hard-coded temporary files # sas temporary csv file csvdata <- paste(inPath,"/t__sd__t.csv", sep="") # sas temporary column definition file coldef <- paste(inPath,"/t__sc__t.csv", sep="") libRef <- obSAS.DataService$AssignLibref("sasds","",inPath,"") # create the content csv file cont1 <- paste("proc contents data=sasds.",inSAS," out=_tmp1(KEEP=NAME TYPE LENGTH VARNUM FORMAT) noprint; run;",sep="") cont2 <- "proc...
2002 Dec 25
0
Part II Re: read.ssd {foreign} (Reading a permanent SAS d ataset into an R data frame)
...didn't know the answers so did a > little experiment. > The long variable names are apparently a problem for > the spss engine (see > highlighted log note--other comments below): > > > 41 * using SAS ; > 42 libname check xport 'e:\testing.xpt' ; > NOTE: Libref CHECK was successfully assigned as > follows: > Engine: XPORT > Physical Name: e:\testing.xpt > 43 > 44 data a; > 45 > 46 do i = 1 to 10 ; > 47 xnamedlongerthan8char = 1 + i ; > 48 yalsonamedlongerthan8char = > 50/xnamedlongerth...
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings to libxl, to make them useful for clients such as xapi/xenopsd (from XCP). There are a number of bugfixes to the existing bindings as well. I have an experimental version of xenopsd that successfully uses the new bindings. An earlier version of the first half of the series was submitted to the last by Ian Campbell on