Tagged Questions
A commercial, object-oriented, implementation of the S programming language (R being another popular implementation of S). S plus is intended for users who need advanced statistical computing tools. It is currently owned by TIBCO Software Inc.
5
votes
2answers
140 views
machine learning libraries in s+ (or R)?
have been searching around the internet and stackoverflow, but haven't been able to find any information on libraries for machine learning in s-plus or R. does anyone know of any or could perhaps ...
4
votes
1answer
247 views
Data frames with variable-length data in R/Splus
The following works fine in R
myarray <- as.array(list(c(5,5), 9, c(4,2,2,4,6)))
mydf <- as.data.frame(myarray)
But in Splus it does not---giving the error message:
Problem in ...
3
votes
1answer
57 views
Read S-Plus Database without S-Plus?
I have an old (~1995) .Data database directory from S-Plus. Is there anyway that I can recover some of the objects contained in it without using S-Plus, maybe with R?
3
votes
2answers
386 views
iteratively constructed dataframe in Rx
I'm relatively new to R, and was wondering the most efficient way to iteratively construct a dataframe (one row at a time, the number of iterations "n" and the length of each row "l" are known ...
2
votes
2answers
106 views
Writing a function for initializing parameters in R/Splus
I'd like to write a function that will create and return a set of parameters to be used in a function mySimulation I've created. Until now, I've basically been doing, e.g., mySimulation(parm1 = 3, ...
2
votes
3answers
146 views
How to create a list with names but no entries in R/Splus?
I'd like to set up a list with named entries whose values are left uninitialized (I plan to add stuff to them later). How do people generally do this? I've done:
mylist.names <- c("a", "b", "c")
...
1
vote
3answers
390 views
In R, what is a good way to aggregate String data
In R (or S-PLUS), what is a good way to aggregate String data in a data frame?
Consider the following:
myList <- as.data.frame(c("Bob", "Mary", "Bob", "Bob", "Joe"))
I would like the output to ...
0
votes
0answers
5 views
Splus displaying NA as blank
all
I am a novice with Splus. I have question regarding displaying (just, displaying) #N/A as blank. I know I can replace "N/A" with "" as blank, but that would lose its numeric data frame ...
0
votes
1answer
93 views
`objects()` in R vs. Splus
I would like to write a script main.r that returns the workspace to the state it was in before being run (i.e., at the end of the script, remove all and only the objects that had been added to the ...
0
votes
2answers
122 views
Setting default “open” behavior of a `.R` file in Windows?
Q: In Windows, how can I set .R files to open by default in the R Editor? A bonus would be if they opened AND set the workspace to the directory in which they live.
Windows is able to open .ssc files ...
0
votes
0answers
101 views
Importing data via symlink with `importData()` in Splus?
On my Vista32, I have the following project directory structure:
/data/mydata.csv
/projects/myproject/data/mysymlink.csv
where mysymlink.csv is a symbolic link to \data\mydata.csv
With ...
0
votes
1answer
184 views
Calling R from S-Plus?
Does anyone have any suggestions for a good way to call R from S-Plus? Ideally I would like to just pass code to R and get data back without having to write anything too elaborate to integrate them. ...