4
votes
Weighted slope one algorithm? (porting from Python to R)
I used the same reference (Bryan O'Sullivan's python code) to write an R version of Slope One a while back. I'm pasting the code below in case it helps.
predict <- function(user …
5
votes
Static Variables in R
Here's one way by using a closure (in the programming language sense), i.e. store the count variable in an enclosing environment accessible only by your function:
make.f <- funct …
0
votes
Line functions in R
Here's another way using matplot:
> x <- 0:10
> matplot(cbind(x, x, x), cbind(3*x+1, 4*x+2, x+1),
type='l', xlab='x', ylab='y')
matplot(X, Y, . …
3
votes
Which IDE for R in Linux?
JGR isn't bad:
http://jgr.markushelbig.org/JGR.html
Most people I know rave about Emacs + ESS:
…
1
vote
Emacs and ESS: Adding “Other” Processes
Try adding something like the following to your ~/.emacs file:
(setq inferior-R-program-name "c:/path/to/Rterm.exe")
and restart emacs.
…
2
votes
Creating an adjacency list from a data.frame
Quick and dirty ...
> edges <- data.frame(nodea=c(1,2,4,2,1), nodeb=c(1,2,3,4,5))
> adjlist <- by(edges, edges$nodea, function(x) x$nodeb)
> for (i in as.character( …
3
votes
Moving an R Plot header
Try tweaking mar:
mar.old <- par('mar')
print(mar.old)
par(mar=rep(10, 4)) # some ridiculous values
plot(density(rnorm(1000)), ylab='foo\nbar\nbaz\nquux')
par(mar= …
3
votes
Getting rid of axis values in R Plot
Remove numbering on x-axis or y-axis:
plot(1:10, xaxt='n')
plot(1:10, yaxt='n')
If you want to remove the labels as well:
plot(1:10, xaxt='n', ann= …
2
votes
R function for testing if a vector contains a given element
You can use the %in% operator:
vec <- c(1, 2, 3, 4, 5)
1 %in% vec # true
10 %in% vec # false
…
3
votes
Are there any programming challenges out there for R users?
I don't know of any specifically for R users. But you'll find a good number of R entries on the Project Euler challenge. See this blog, for e …
5
votes
In R, what is the difference between the [] and [[]] notations for accessing the elements of a list?
The R Language Definition is handy for answering these types of questions:
http://cran.r-project.or …
0
votes
Manipulating Network Data in R
Here's how to make a network plot of the data in igraph:
d <- data.frame(p1=c('a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', …
1
vote
Linear Regression and group by in R
Here's one way using the lme4 package.
> library(lme4)
> d <- data.frame(state=rep(c('NY', 'CA'), c(10, 10)),
+ year=rep(1:10, 2),
+ …
6
votes
3
votes
R object identification
I usually start out with some combination of:
typeof(obj)
class(obj)
sapply(obj, class)
sapply(obj, attributes)
attributes(obj)
names(obj)
as appropriate based on …
