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.
17
votes
0answers
181 views
R: Why is the [[ ]] approach for subsetting a list faster than using $?
I've been working on a few projects that have required me to do a lot of list subsetting and while profiling code I realised that the object[["nameHere"]] approach to subsetting lists was usually ...
12
votes
0answers
158 views
knitr/Rmd: page break after n lines/n distance
Let me caveat by saying that this may be better suited as an html/css question but (a) I'm not too familiar with those techniques and (b) I wanted to keep it all in the family (R family) if possible.
...
7
votes
0answers
80 views
knitr markdown highlighting in emacs?
After googling for hours, I thought I would try here. Is there any modification of an existing tool or new tool that will syntax-highlight (colour) blocks of R code in a knitr markdown document when ...
7
votes
0answers
374 views
List objects that take up massive memory
I have recently discovered the wonders of the packages bigmemory, ff and filehash to handle very large matrices.
How can I handle very large (300MB++) lists? In my work I work with these lists all ...
6
votes
0answers
75 views
Avoiding consideration of enclosing frames when retrieving field value of a S4 Reference Class
I'm a huge fan of S4 Reference Classes as they allow for a hybrid programming style (functional/pass-by-value vs. oop/pass-by-reference; example) and thus increase flexibility dramatically.
However, ...
6
votes
0answers
375 views
Use D3 and Shiny to implement `identify()` in R
I asked a question on how to plot dynamically according to user interactions, whose solution
works quite well on my machine. Now I want to make an online version and host it with Shiny. I have tried ...
6
votes
0answers
129 views
getGraphicsEvent for reading the key board for a noninteractive session
In older versions of R, version 2.9 anyway, I was able to run an R program from batch using rterm.exe and create a graphics window that a user could scroll back and forth and view the graphs. I was ...
5
votes
0answers
50 views
knitr - exclude chunks from `purl(…)`?
When I purl/tangle a document to extract the R chunks into a script, is there any way to:
exclude an arbitrary chunk (by name say)?
if not, exclude a chunk if eval=F (or perhaps I can define a chunk ...
5
votes
0answers
88 views
Can a Reference Class be made to Log Calls
I have a question about Reference Classes. My question is in the context of an R package I am developing rCharts. It uses reference classes to create interactive plots from R.
Creating a plot ...
5
votes
0answers
149 views
Remote communication with R – How to start with an R GUI client to access R on a remote Server
I tried RInside's Qt example qdensity and really liked it. It was easy to setup and I was surprised how easy it was to understand and modify given that I have virtually no Qt experience. Now I wonder ...
5
votes
0answers
296 views
How can I get Rtools working on Windows with R 2.15.2?
After installing Rtools 3.0 for Windows, I ran the following command at the R console:
> library(devtools)
WARNING: Rtools is required to build R packages, but no version of Rtools compatible with ...
5
votes
0answers
215 views
Could data.table do joins on arbitrary functions (i.e. fuzzy/soft joins)?
The following is hypothetical. Lets say I have a string similarity function that produces a boolean result (string_sim), and another that determines if the distance between two lat/lon coordinates is ...
5
votes
0answers
195 views
What are the options for integrating a R linter in a text editors? lint in svTools, codetools etc
I am trying to extend SublimeLinter with a linter for R. SublimeLinter provides automatic linting in Sublime Text 2 for a lot of languages. The goal is that the linter runs in the background and ...
5
votes
0answers
181 views
adding useDynLib through Roxygen
I am converting my packages to use roxygen documentation, through the roxygen2 package. Now my package does not load and I think that is is because of the missing useDynLib(mypackage) call missing ...
4
votes
0answers
135 views
How to make R tm corpus of 100 million tweets
I want to make a text corpus of 100 million tweets using R’s distributed computing tm package (called tm.plugin.dc). The tweets are stored in a large MySQL table on my laptop. My laptop is old, so I ...
4
votes
0answers
170 views
Google Trends in R
Does anyone know of a functioning R package to import Google Trend results?
I have tried rGtrends and RGoogleTrends. The first seems to get stuck downloading the CSV file:
> require(devtools)
...
4
votes
0answers
67 views
Using RCurl/httr for Github Basic Authorization
I am trying to create an OAuth token from the command line using the instructions here. I am able to use curl from the command line, and get the correct response
curl -u 'username:pwd' -d ...
4
votes
0answers
51 views
Creating a sequence object from SPELL data
I am trying to create a sequence object with seqdef using SPELL format. Here is an example of my data:
spell <- structure(list(ID = c(1, 3, 3, 4, 5, 5, 6, 8, 9, 10, 11, 11,
12, 13, 13, 13, 13, ...
4
votes
0answers
60 views
Create MTurk Hit in R using the CreateHTMLQuestion Commmand
I would like to Create a Mechanical Turk Hit by using the MTurK Package in R.
The R code I am using is the following:
filecontent <- GenerateHTMLQuestion(file="file.html")
print(filecontent)
...
4
votes
0answers
145 views
How to use zoo or xts with large data?
How can I use the R packages zoo or xts with very large data sets? (100GB)
I know there are some packages such as bigrf, ff, bigmemory that can deal with this problem but you have to use their limited ...
4
votes
0answers
69 views
Pre- or post-process roxygen snippets?
Is there some mechanism by which I can transform the comments that roxygen sees, preferably before it does the roxygen->rd conversion?
For example, suppose I have:
#' My function. Does stuff with ...
4
votes
0answers
94 views
Connection to memory (R)
I have to repeatedly serialize (big) R objects. To avoid repeated garbage collecting of the resulting raw vectors (after profiling, it turns out that half of my script running time is spent in gc!) ...
4
votes
0answers
162 views
Is ggplot2's continuous color scale incompatible with knitr's tikzDevice?
I've been using knitr with R base graphics and tikz output for a while now, and wanted to try out ggplot2 instead. However, this minimal example fails to produce any output with knitr 1.0.5:
...
4
votes
0answers
232 views
partition of anova and comparisons (orthogonal single df) in r
I want to do single df orthogonal contrast in anova (fixed or mixed model). Here is just example:
require(nlme)
data (Alfalfa)
Variety: a factor with levels Cossack, Ladak, and Ranger
Date : a ...
4
votes
0answers
86 views
How to solve ODEs with an internal threshold?
I have the following function containing some odes:
myfunction <- function(t, state, parameters) {
with(as.list(c(state, parameters)),{
if (X>20) { # this is an internal ...
4
votes
0answers
112 views
Asynchronous writes to a file in R
Could anyone provide me with some guidance on how to asynchronous writes from chunks of a very large file, each of which is being processed with the same function in a number of clusters (8-500). The ...
4
votes
0answers
362 views
Overall correlation in ggpairs with colour grouping?
This code produces a nice pairs plot that has a correlation read-out on the middle right:
library(GGally)
ggpairs(esoph[,c(1,4,5)], colour='agegp')
You can get just the correlation square with:
...
4
votes
0answers
2k views
How to jitter text to avoid overlap in a ggplot2 scatterplot?
I would like to create a clean version of a scatterplot of text labels in ggplot2. The goal is to represent visually the increasing values associated with about 25 items. I am already using ...
4
votes
0answers
205 views
ggplot2 - gridlines seem to fail for very small numbers on log scale
I'm making a bunch of boxplots in ggplot2 of very small numbers on a log10 scale. It seems that there's some threshold where ggplot2 stops displaying the grid properly. The plot using dat1 has the ...
4
votes
0answers
1k views
R studio failling to use rJava lib and failling javareconf
I'm running Rstudio on its own server.
Java is installed with good java_home and bin.
R is installed. rJava is installed.
Tried to do command : library("rJava") but had issues with libjvm.so, do ...
4
votes
0answers
599 views
R calculate robust standard errors (vcovHC) for lm model with singularities
In R, how can I calculate robust standard errors using vcovHC() when some coefficients are dropped due to singularities? The standard lm function seems to do fine calculating normal standard errors ...
4
votes
0answers
400 views
How to add class-specific alias without generic alias using Roxygen2?
A simple example is that I have created an extension to show, which is a S4 base method. I don't want to cause a disambiguation fork by re-documenting show in my package, and I also want to ...
4
votes
0answers
635 views
What setup is need to compile rpy2 on Windows?
I've been able to install rpy2 v2.0.8 from the .msi from source forge, but I'd like to use the latest version that includes the packages code, i.e. v2.1.9.
I'm attempting to compile rpy2 in windows ...
3
votes
0answers
15 views
Remove multiple columns from data.table
What's the correct way to remove multiple columns from a data.table? I'm currently using the code below, but was getting unexpected behavior when I accidentally repeated one of the column names. I ...
3
votes
0answers
28 views
creating data.table::ITime vector
I was surprised doing this, using the data.table package:
a = as.ITime('12:01:00')
str(a)
Class 'ITime' int 4326
a = as.ITime(c('12:01:00','12:00:02'))
Message d'avis :
In if (!is.na(y)) ...
3
votes
0answers
20 views
summary {Hmisc} drops category?
I am trying to get a crosstab with percentages from this file using Hmisc. But why is summary() dropping a category ("OTHERS") from the variable OCCUPATION?
library(Hmisc)
summary(ID ~ OCCUPATION, ...
3
votes
0answers
54 views
Fastest way to get version controlled code back into RStudio
I'm using git as a version control system in RStudio. I have several different versions of an R script saved in git. Lets say, I've deleted a block of code but I've now decided I want to re-insert the ...
3
votes
0answers
112 views
Positioning two legends independently in a faceted ggplot2 plot
I have a plot generated by ggplot2, which contains two legends. The
placing of the legends is not ideal, so I would like to adjust
them. I've been trying to imitate the method shown in
the answer to ...
3
votes
0answers
45 views
getURL (from RCurl package) doesn't work in a loop
I have a list of URL named URLlist and I loop over it to get the source code for each of those URL :
for (k in 1:length(URLlist)){
temp = getURL(URLlist[k])
}
Problem is for some random URL, ...
3
votes
0answers
62 views
R: Creating n-grams in R with Asian / Chinese characters?
So I'm trying to create bigrams and trigrams of a given set of text, which just happens to be Chinese. At first glance, the tau package seems almost perfect for the application. Given the following ...
3
votes
0answers
82 views
Error running ImageMagick from R: Invalid parameter
I am trying to make a GIF-animation in R. I have an array of matrices which i wish to convert into a GIF animation. My strategy is inspired from this example:
...
3
votes
0answers
32 views
Include matrix in equation in R function documentation
I would like to typeset a matrix in an equation in the context of documenting an R function. As a matter of fact, amsmath isn't available for R documentation per default and eqnarray doesn't work ...
3
votes
0answers
65 views
How to handle dependencies (`Depends:`) of imported packages (`Imports:`)
I'm trying to use Imports: instead of Depends: in the DESCRIPTION files of my packages, yet I still feel I've got some more to understand on this ;-)
What I learned from this post (by the way: ...
3
votes
0answers
92 views
CVX-esque convex optimization in R?
I need to solve (many times, for lots of data, alongside a bunch of other things) what I think boils down to a second order cone program. It can be succinctly expressed in CVX something like this:
...
3
votes
0answers
45 views
How do I interact a tensor product with two different `by=var` variables?
An example:
library(mgcv)
N=1000
x1 = seq(1:N)
x2 = log(x1)
x3 = sqrt(x1)
fac1 = ceiling(rnorm(N)*3)
fac2 = ceiling(runif(N)*3)
y = fac1*x2 + x1*x2 + x2 + x3*x2 + x2*(x1/x3)^(.8+fac2/10) + ...
3
votes
0answers
39 views
How to run RTerm.exe on background (Running a custom GUI)
I'm trying to create a custom GUI for R using gWidgets, I've stumbled on this thread: Running an R script using a Windows shortcut,
which helped me a lot, but theres only one issue left: the black ...
3
votes
0answers
73 views
Flow chart using {diagram} in R 3.0.0 for Windows
I am trying to re-make a flow chart in R using the diagram package (v 1.6). I was able to make a chart using this exact script (which I modified from the example in the diagram documentation), but ...
3
votes
0answers
151 views
How to scale/transform graphics::plot() axes with any transformation, not just logarithmic (for weibull plots)?
I am building an R package to display weibull plots (using graphics::plot) in R. The plot has a log-transformed x-axis and a "weibull" transformed y-axis (for lack of a better description). The ...
3
votes
0answers
63 views
Override Method in R 2.15
I would like to know if there is any way to override any operator method in R package.
Example for the source in the package:
setclass("clsTest", representation(a="numeric", b="numeric"))
...
3
votes
0answers
93 views
SVGAnnotation to create tool tips for each value in R heatmaps
I'd like to create a heat map in R that I want to use on a website. I stumbled upon the SVGAnnotation package which seems to be very nice to process SVG graphics in R to make them more interactive. ...



