Displaying 6 results from an estimated 6 matches for "to_r".
Did you mean:
to_i
2008 Dec 03
2
reading version 9 SAS datasets in R
...lookup.xport(file) : file not in SAS transfer format
Next I tried using the libname statement and the xport engine to create
a transport file. The problem with this method is that variable names
cannot be more than 8 characters 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: XP...
2010 May 18
1
GUI commands to call for a protein from protein data bank
...e
the input by the user and not protein code. I want to be able to type 1ly2,
and for the program to actually display the contents of 1ly2. Thanks!
Code:
dlg <- aDialog(items=list(
ProteinCode=stringItem("")
),
OK_handler=function(.) { # . is reference to dlg object
values <- .$to_R()
f <- function(ProteinCode)
pdb <- read.pdb("ProteinCode")
do.call(f, values)
}
)
dlg$make_gui()
--
View this message in context: http://r.789695.n4.nabble.com/GUI-commands-to-call-for-a-protein-from-protein-data-bank-tp2220754p2220754.html
Sent from the R help mailing list archiv...
2012 Mar 22
1
how to adjust gui window size
hi, i'm trying to make gui function by "aDialog" FUN.
What i want to do is adjusting the window size.
my function is ,
aa<- aDialog(items=list(
ps=numericItem(),
number=numericItem(),
term=numericItem()
),
OK_handler=function(.) { # . is reference to dlg object
values <- .$to_R()
do.call("KOD",values)
}
)
how can i adjust the size of the window?
Thanks~
--
View this message in context: http://r.789695.n4.nabble.com/how-to-adjust-gui-window-size-tp4495883p4495883.html
Sent from the R help mailing list archive at Nabble.com.
2012 Apr 24
0
help with GUI interface
...)
.$set_file.type(c(txt="table",csv="csv")[i])
}
}
switch(.$get_file.type(),
"csv"={.$set_sep(","); .$set_quote('\"')},
"table"={},
{}
)
.$set_output(.$do_call("read_file",.$to_R()))
}
dlg$OK_handler <- function(.) {
out <- .$do_call("read_file",.$to_R())
assign.to <- .$get_assign.to()
if(exists(assign.to, envir=.GlobalEnv)) {
if(!gconfirm(sprintf("Overwrite variable %s?", assign.to)))
return()
}
assign(assign.to, out,...
2003 Feb 21
5
Problem Writeing a pipe using R (stdin is consumed)
Hi everybody,
I a, trying to use R as a pipe like this:
cat inputData | R --silent RCommandFile >outputData
The RCommandFile would contain something like readLines(stdin()).
I have tryed various things and none did work cleanly.
One possible solution is to use the pipe() function inside R and to pass in the "cat inputData" however this is not very convenient
since I would like to
2010 Jan 28
3
Using tcltk or other graphical widgets to view zoo time series objects
Dear all,
I am looking at the R-help entry below:
http://finzi.psych.upenn.edu/R/Rhelp02/archive/26640.html
I have a more complicatedt problem. I have a zoo time series frame with
100+ sequences.
I want to cycle through them back and forth and compare them to the 1st
column at any time.
I need also a button to click when I need the viewed-selected sequence
(that is being compared to the