R is a free, open source programming language and software environment for statistical computing, bioinformatics and graphics. It is advised to supplement your question with a reproducible example (http://stackoverflow.com/q/5963269); for statistical questions please use crossvalidated.com.

learn more… | top users | synonyms (1)

3
votes
1answer
88 views
+50

R ggplot2 fonts issue

I'm trying to get the xkcd fonts working in R with ggplot2. However I'm running into some issues. Here is what I have done so far. 1) Installed the "Humor Sans" font from the xkcd site in the ...
0
votes
0answers
100 views
+50

R - standard errors on predictions from nlme

This question builds on Extract prediction band from lme fit but with non-linear mixed models. I have a dataset of response values that are grouped by "entry." I used an AIC-model selection procedure ...
0
votes
1answer
64 views
+50

Select rasters in stack based on layer partial name match

I have a stack of rasters (one per species) and then I have a data frame with lat/long columns along with a species name. fls = list.files(pattern="median") s <- stack(fls) ...
0
votes
0answers
29 views
+50

How can I make cell size in an heatmap mediate data resolution using R?

Giving the following example: X <- matrix(nrow=3, ncol=3) X[1,] <- c(0.3, 0.4, 0.45) X[2,] <- c(0.3, 0.7, 0.65) X[3,] <- c(0.3, 0.4, 0.45) colnames(X)<-c(1.5, 3, 4) ...