search for: sysin

Displaying 5 results from an estimated 5 matches for "sysin".

Did you mean: s_sin
2005 Jul 02
1
how to call sas in R
Hello all, I would like to know how to call sas code in R. Since I simulate data in R and I need to use sas code (garch-t,egarch and gjr) to estimate it. I need to simulate 500 times with 2000 obs. How I can call that code in R.Also, how I can keep the parameters from the estimate. j=1:500 i=1:2000 sas code keep parameters. Best Appreciate, Luck
2007 Apr 23
0
Correction to PR #9631 (PR#9632)
...t;") cat(st0, file = tmpProg) cat(st1, file = tmpProg, append = TRUE) cat(st2, file = tmpProg, append = TRUE) cat(st3, file = tmpProg, append = TRUE) cat(st4, file = tmpProg, append = TRUE) if(.Platform$OS.type == "windows") sascmd <- paste(shQuote(sascmd), "-sysin") sasrun <- try(sysret <- system(paste(sascmd, tmpProg))) if(!inherits(sasrun, "try-error") & sysret == 0){ unlink(tmpProg) unlink(tmpProgLog) if(length(sectionnames) == 1) return(foreign::read.xport(tmpXport)) else { zz <- read.xport(tmpXport)...
2000 Jun 21
3
SAS dataset
Hello, Is there any way we convert SAS dataset into R dataset? Kindest Regards, Peppy Adi-Purnomo ------ Peppy Adi-Purnomo Energy Market Analyst Energy Link Ltd Dunedin - New Zealand Ph.: +64 3 479 2475 Fax: +64 3 477 8424 Email: s.adi.purnomo at energylink.co.nz www.EnergyLink.co.nz -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2012 Nov 07
9
Executing SAS Codes in R
Is there a way of executing SAS codes in R environment?   Peter Maclean Department of Economics UDSM [[alternative HTML version deleted]]
2006 Dec 11
3
Problem with sas.get function in Hmisc
...1 In addition: Warning message: 'cmd' execution failed with error code 1 in: shell(cmd, wait = TRUE, intern = output) In the R temp directory there is only one file : SaS678418be.3.sas, containing the usual SAS program (macro and macro call). I can run it from R with : > sys("sas -sysin C:/Temp/RtmpuC23qb/SaS678418be.3.sas") character(0) and I get two files with dict (SaS678418be.1.sas) and data (SaS678418be.2.sas). So the SAS step seems to work fine. Do you have an idea of what went wrong ? I tried to run old R progs with sas.get which used to work, and have the same proble...