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.
2
votes
0answers
55 views
insert data.frame from R to Mongodb
I have a Twitter data CSV file which I have read in R using read.table, then I have performed some algorithms on that data and got the output as tabular data. I want to insert this tabular data into ...
2
votes
0answers
92 views
R graph degree.distribution not working
I cannot figure out why degree.distribution is not working for me. I have tried on R i386 3.0.0 and R x64 3.0.0. Here is the simple script to generate a graph and show its distribution:
...
2
votes
0answers
68 views
ggplot 0.9.3 issue with facet_wrap, free scales and coord_flip
This simple code from a sample demo does not work anymore in 0.9.3.
require(ggplot2)
p <- qplot(displ, hwy, data = mpg)
p + facet_wrap(~ cyl, scales = "free_y") + coord_flip()
The above code now ...
2
votes
0answers
229 views
Using twitteR through a proxy server
I'm trying to download Twitter data using the twitteR package.
I keep getting the error message
"Error in function (type, msg, asError = TRUE) : couldn't connect to host"
I believe this is ...
2
votes
0answers
66 views
Routing Optimization Using R Packages
I'm a novice with R. I'm trying to figure out the functions/packages I can use for a Logistics Optimization problem. For example, how can we maximize routes of trucks to deliver goods given that the ...
2
votes
0answers
78 views
How to specify titles for tableGrobs in grid.arrange (from gridExtra)?
It looks like grid.arrange() ignores the name attribute of tableGrob. Let's say I want to plot tables with titles...
baz<-lapply(seq(3),function(ii)
tableGrob(format(matrix(runif(8),nrow=2,
...
2
votes
0answers
37 views
Basic 2D color smoothing in R
I have the following data with the following colors
x = c(2,3,4,2,3,7,8,7,5,6,2,3,6,8,9,10)
y = c(5,6,5,6,5,11,12,11,16,17,12,12,10,5,6,5)
col = sample(c("red","green"),16,rep=T)
...
2
votes
0answers
29 views
parameter C. epsilon as vector in kernlab's ksvm in R
I am trying to use ksvm function of kernlab package in R for epsilon-SVM regression. I want to put parameters C(regularization constant) and epsilon (insensitivity) as vectors(length of vector = ...
2
votes
0answers
74 views
Multiple Filled Contour plots on the
I think my query is partially answered by this:
Filled contour lines from a plot with color in R
I have added a response to that post, but being quite old, I thought I might re-post it as a new ...
2
votes
0answers
129 views
Approximate the distribution of a sum of binomial random variables in R
My goal is approximate the distribution of a sum of binomial variables.
I use the following paper The Distribution of a Sum of Binomial Random Variables by Ken Butler and Michael Stephens.
I want to ...
2
votes
0answers
333 views
R 3.0 and GTK+ / RGTK2 error
I've installed R3.0 on my Mountain Lion Mac and after some trial and error the version of GTK suggested by http://r.research.att.com/ for R3.0: GTK+ 2.24.17 framework.
I load the package into R3.0 ...
2
votes
0answers
89 views
Installing SVGAnnotation package under R 2.15.3
I have troubles installing the SVGAnnotation package under R 2.15.3
Because this package is not available at CRAN, I downloaded version 0.93-1 from http://www.omegahat.org/SVGAnnotation/
and try to ...
2
votes
0answers
118 views
Restart R within Rstudio
I'm trying to call a simple python script from within R using system2(). I've read some information I found vague that said if 'too much' memory is used, it won't work.
If I load a large dataset and ...
2
votes
0answers
73 views
formula.update with function containing NA as argument value does not work
EDIT: I Made a bit simpler example of the same situation:
I'm trying to remove one term corresponding to function fn from the model formula.
f<-formula(y~x+fn(z=1))
update(f,.~.-fn(z=1)) #remove ...
2
votes
0answers
148 views
Run nested logit regression in R
I want to run a nested logistic regression in R, but the examples I found online didn't help much. I read over an example from this website (Step by step procedure on how to run nested logistic ...
2
votes
0answers
48 views
knitr chunk math notation
I am unable to render maths notation inside a knitr chunk in Lyx although it renders fine using \Sexpr or in an ERT box while using Lyx 2.0.5 and knitr 1.1
The following code was adapted from the ...
2
votes
0answers
52 views
Convert markdown to Rd, or define custom markdown conversion rules?
I'm trying to write documentation for an R package in Markdown, and have it converted to an Rd file.
I guess another way to look at this is that I want a framework that recognises various markdown ...
2
votes
0answers
53 views
Forcefully set Encoding from unknown to UTF-8 or any encoding in R?
I am reading data from an old proprietary database. Unfortunately I end up (only for some strings) with Encoding(mychar_vector) returning "unknown". Unfortunately I am using a wrapper around a closed ...
2
votes
0answers
43 views
lag a zoo object by different time periods
I have a zoo object where the time component is hourly ie...
2009-04-01 00:00:00
2009-04-01 01:00:00
...
2013-03-20 23:00:00
I know that I can use lag(zoo, k=-1) to get the previous hour. How can ...
2
votes
0answers
59 views
ggplot aes_string with interaction
Using aes_string makes it easy to construct functions to take parameters to plot:
p <- ggplot(mtcars, aes_string(x="mpg", y="wt", group=interaction("cyl","gear"))) +
geom_point()
Now to ...
2
votes
0answers
113 views
Showing POSIXt object with Shiny renderTable
I'm making an app to analyse time series data with Shiny.
The data I work with looks like:
V1 V2
1 2013-02-04 18:15:00 -4.746
2 2013-02-04 18:20:00 -4.745
3 2013-02-04 ...
2
votes
0answers
58 views
Use R to create differently sized graphs with same text size
I need to create small and large versions of several graphs such that the text size is the same. I'd like to avoid fiddling with low-level graphical parameters, but so far that's the only thing that's ...
2
votes
0answers
94 views
Extracting data from densityplot within lattice and r
In R and using Lattice, I am trying to extract histogram and densityplot data by year for use by other programs. I have the histogram part working so far:
library(lattice)
x <- round(runif(1000, ...
2
votes
0answers
37 views
Advanced error handling: systematically try a range of handlers
Another follow up to this and this.
Actual question
Question 1
Upon running into some condition (say a simpleError), how can I invoke a respective restart handler that systematically tests a range ...
2
votes
0answers
121 views
Model formula for glm regression with user-specified family
Background
I am trying to predict the sales for a product line (y_test in the sample at the end). Its sales for a timeperiod are based on all previous sales of another product (x_test) and how many ...
2
votes
0answers
41 views
In R, is it possible set the title of a Cairo window?
I'm outputting several plots via the Cairo package in R. But having five windows titled "Cairo Graphics" makes it hard to find the right one in the taskbar.
Is there anyway to change the text in the ...
2
votes
0answers
68 views
How should I link legend placement to values of data in ggplot2?
I would like to automatically adjust the vertical placement my legend so the legend ends up close to the data. I would like the center of the legend to have the same vertical placement as the median ...
2
votes
0answers
360 views
Creating Multiple y-axes scales (or alternatives?) using ggplot2 in R
I'm trying to display two different kinds of information in a graphic. Here's a MWE, and then I'll explain:
library(ggplot2)
p = 1:10/10-.05
X = matrix(0,nrow=100,ncol=10)
for( i in 1:10 ) X[,i] = ...
2
votes
0answers
75 views
R exdir does not exist error
I'm trying to download and extract a zip file using R. Whenever I do so I get the error message
Error in unzip(temp, list = TRUE) : 'exdir' does not exist
I'm using code based on the Stack ...
2
votes
0answers
66 views
Does there already exist an R package that can print any list to the console as a tree (using ASCII symbols)?
I would find it convenient to be able to print out any list-mode R object using the same format as str.dendrogram. I wrote my own function that kind of works, but there's no point in duplicating ...
2
votes
0answers
68 views
External Code chunks in knitr with LaTeX
I have been unable to get external code chunks to work in knitr from a LaTeX (*.Rtex) document.
foo.R contains:
## @knitr foo
#
tx <- seq(0,2*pi,length.out=100)
ty <- cos(tx*3.0)
...
2
votes
0answers
140 views
repeated measure anova using regression models (LM, LMER)
I would like to run repeated measure anova in R using regression models instead an 'Analysis of Variance' (AOV) function.
Here is an example of my AOV code for 3 within-subject factors:
...
2
votes
0answers
148 views
Exporting Corpus from TM in R
I'm trying to export Corpus objects from R to static files. The corpora contain stemmed documents created by parsing existing preprocessed files in the file system. The author describes a method to do ...
2
votes
0answers
79 views
R: alternatives to all.equal?
While all.equal is a very powerful tool, with a cornucopia of informative response strings, I wanted an equivalent function which simply returned TRUE/FALSE for near-equality. (I'm aware of the ...
2
votes
0answers
141 views
Loading and saving variables in R with gWidgets
For the past few months I've been building a simulation in R I hope to package. It consists of two usable functions, and many internal ones which one of the two usable functions call while looping, to ...
2
votes
0answers
49 views
lazy evaluation in R – is assign affected?
I read this basic question on renaming objects and @Shane 's answer to it, pointing me to lazy evaluation. Now I wonder if assign is evaluated lazily, too. Just like here:
...
2
votes
0answers
38 views
url in CRAN extension manual
Aesthetics question about CRAN manuals. How do you make urls from the Description field red and function when clicked (like the first url in the URL field)? The only one that appears red in a manual ...
2
votes
0answers
122 views
How to wrap stacked facets in ggplot2
In my data.frame df, I have variables A, B, C and D. I would like to plot C vs D, and facet with A and B. B is a factor with 3 levels and I would like for it to be facetted vertically, and A has many ...
2
votes
0answers
41 views
Why does the statet eclipse plugin crash upon updating the envrionment index with java 1.7.0?
Running R in Eclipse using the statet plugin results in a crash when I choose to update the environment index (necessary for the popup help) but only if run with java 1.7.0.
Versions: R 2.15.2x64, ...
2
votes
0answers
157 views
facebook api in R: OAuthException error, code 803
Im trying to connect to Facebook using R. I tried to use the codes from
https://github.com/datamgmt/facebook-data-mining
Which gets the user information with the following code:
access.token<- ...
2
votes
0answers
86 views
All jobs on one core fail with R multicore
I'm using R multicore on a long list. I invoke mclapply on the list, which makes use of 12 cores on my machine.
When my list has about 1000 elements long it runs fine.
When my list is longer than ...
2
votes
0answers
155 views
R readHTMLTable: Error failed to load external entity
I am trying to read a HTML table using the XML command readHTMLTable. It is information about options in the Eurex page. When i run the code:
...
2
votes
0answers
100 views
plyr split_indices function crashes for long vectors
I am trying to run acast function from the package reshape2 on a large data set, and getting the program crash. I was able to localize this problem:
library(plyr)
n <- 15784000
g <- 1:n
...
2
votes
0answers
119 views
How to free memory after deleting an object
I am contacting you directly as I am unable to find the solution by myself. I am loading huge shapePoly using the readShapePoly function. I do some treatments on them and substraction in order to work ...
2
votes
0answers
69 views
Show progress message or bar when with download.file in Emacs ESS
The title should tell it all. R download.file() does not show progress status in Emacs ESS.
Any workaround?
Update
As requested an example:
download.file("http://path/to/file.zip", "myfile.zip", ...
2
votes
0answers
70 views
Inequality constraints in systemfit
I'm trying to estimate a simultaneous equations system using systemfit, but cannot seem to specify inequalities as constraints. I've recreated the problem using the airquality dataset, the issue ...
2
votes
0answers
88 views
AWS dynamodb support for “R” programming language
Has anyone been able to successfully CRUD records in amazon dynamodb using the R programming language? I found this reference of language bindings supported:
...
2
votes
0answers
121 views
Rmpi : mclapply: In selectChildren(ac, 1) : error 'Interrupted system call' in select
The following minimal example...
require(Rmpi)
set.seed(1)
foo <- parallel::mclapply(seq_len(10), function(l)
lapply(1:10, function(x) mean(rnorm(10000, mean=x))),
...
2
votes
0answers
171 views
how to plot multiple histograms on the same graph from multiple DNA distance files?
I have 100 fasta files and I would like to plot overlapping histograms of genetic distance matrix to see how much overlap there is between bootstrap replicates of DNA data?
I have figured out how to ...
2
votes
0answers
381 views
How to plot random intercept and slope model in R
Hello I have a question about how to plot a random intercept and slopes model using nlme in R. I have (with help of Zuur et al., 2009) figured out how to plot a model with random intercepts, but ...


