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)

18
votes
0answers
192 views

knitr markdown highlighting in Emacs?

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 opened in Emacs? The knitr chunks I am looking at are ...
9
votes
0answers
465 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 ...
7
votes
0answers
418 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: ...
6
votes
0answers
132 views
+100

Getting the private ip address of an Rook page user

I have created some web app using Rook which listen to my network ip (192.168.xx.xx) at port 8000. Everyone inside my office can connect to them just typing http://192.168.xx.xx:8000/page_name in the ...
6
votes
0answers
438 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 ...
6
votes
0answers
211 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: ...
6
votes
0answers
133 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
38 views

Verbatim output in roxygen2 package documentation

I am using roxygen2 from within RStudio to generate package documentation. How do I force the following in the @description section to appear as verbatim fixed-font? SettingID Value RedItem ...
5
votes
0answers
317 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) ...
5
votes
0answers
103 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
189 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
231 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
203 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
196 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
31 views

Shiny - problems with renderUI()'s reactivity

I experience difficulties with Shiny package in R. I am trying to understand why "# Option 1" in server.R doesn't work, but commented "# Option 2" does work. With "# Option 1" being active try typing ...
4
votes
0answers
71 views

Plotting normal distributions

I am trying to plot 3 examples of the normal distribution, however ggplot appears to be recognising the path as one continuous one rather than one stratified by the factor levels. I am relatively new ...
4
votes
0answers
46 views

full precision may not have been achieved in 'qbeta'

I am running R version 2.14.0 on a PC which uses Windows 7 Ultimate (Intel Core i5-2400 3GHz processor with 8.00GB ram). Let me know if other specs needed. I am trying to simulate correlated beta ...
4
votes
0answers
73 views
+50

How to handle boundary constraints when using `nls.lm` in R

I asked this question a while ago. I am not sure whether I should post this as an answer or a new question. I do not have an answer but I "solved" the problem by applying the Levenberg-Marquardt ...
4
votes
0answers
195 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
77 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
64 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
47 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 ...
4
votes
0answers
75 views

overloading operators when using setOldClass not works as wanted compared to an S4 class

Can someone explain why overloading an operator on an old-style S3 class which is registered does not work as expected while when defining a new class and overloading the operators does work. As ...
4
votes
0answers
81 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
174 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
79 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
107 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
354 views

SVM Feature Selection in R

I am training a SVM classifier. Right now, I have about 4000 features, but a lot of them are redundant/uninformative. I want to reduce the features in the model to about maybe 20-50. I would like to ...
4
votes
0answers
198 views

log into a website to grab the data using RCurl

I wanted to login to the website using RCurl and grab the data from the web (The data cannot be seen without logging in.) I wanted to export this (for example) ...
4
votes
0answers
222 views

Rserve connection fails

I am using WPS4R provided by 52north Up to 3 days ago everything was fine and WPS could connect to R by use of Rserve properly but now this connection can not be made. I uninstalled everything, ...
4
votes
0answers
241 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
94 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
116 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
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
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
3k views

Installing R on Mac - Warning messages: Setting LC_CTYPE failed, using “C”

I would like install R on my laptop Mac OS X version 10.7.3 I downloaded the last version and I double click on it and it was installed, when i start up I get the following error, I searched in ...
4
votes
0answers
656 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
932 views

GBM Rule Generation - Coding Advice

I use the R package GBM as probably my first choice for predictive modeling. There are so many great things about this algorithm but the one "bad" is that I cant easily use model code to score new ...
4
votes
0answers
410 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
688 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
43 views

animated gadm map in R

everybody, sorry for disturb, but I am being quite new with r faced a crucial difficuty: I want to create an animated map of Russin with changes in unemployment with differnt years, like. To start ...
3
votes
0answers
56 views

Parallel distance Matrix in R

currently I'm using the build in function dist to calculate my distance matrix in R. dist(featureVector,method="manhattan") This is currently the bottlneck of the application and therefore the idea ...
3
votes
0answers
52 views

Advanced Run Time Calculation in R

I once saw somebody run an R script wherein he was able to run a block of code, and then return a matrix of each function that was called in the code and the total amount of time spent computing that ...
3
votes
0answers
63 views

Fast index of lower upper bound in R

I'm trying to find the index of the lower upper bound in R. This is the same problem that findInterval resolves, but findInterval checks if it's argument is sorted, and I want to avoid that, because I ...
3
votes
0answers
38 views

Plot horizontal dendrogram with hanging leaves? (R)

I would like to create a dendrogram plot with horizontal labels, but having the leaves hang according to their height, instead of just drop to the edge of the plot. Example: par(mfrow = c(1,2)) hc ...
3
votes
0answers
95 views

Prediction analysis (Time series model) in UNIX

I know its not a code level question but wanted your views. I need to perform “Prediction Analysis” in UNIX level using Time series model (like ARIMA). We have implemented the same using R , but my ...
3
votes
0answers
39 views

Understanding apparently different readline (or readBin) behaviour of servers and clients in R?

I have some code which works as follows, setting up 2 R processes to do it. I don't understand the behaviour of some code written for infinite listener loops. This is what I want the code to do: ...
3
votes
0answers
57 views

How to use ff package in R on a remote machine?

I have been using ff package for writing and reading a huge dataset. This package allows me to read and write to tables on my local machine. I wish to have a dedicated machine for data collection ...
3
votes
0answers
46 views

R include “#” in R manual hyperref

I am attempting to include a hyperref link in R documentation using roxygen2 and devtools in a repo. Here's a dummy version. #' Test #' #' Test 2 #' #' @param x An object #' @section Suggestion: ...
3
votes
0answers
104 views

R to Stata: Exporting dataframe with variable labels

I have a dataset in R to which I applied variable labels using the {Hmisc} package. However, when I export the dataset to Stata (using the write.dta function in the {foreign} package), the variable ...

1 2 3 4 5 75