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)

2
votes
0answers
117 views

Forcing a reference category in logistic model in R

Using R, I am running a logistic model and need to include an interaction term in the following fashion, where A is categorical, and B, continuous. Y ~ A + B + normalized(B):A My problem is that ...
2
votes
0answers
95 views

Bagplot function error

I am using the bagplot function within the aplpack package and often get this error: Error in chull(pg[, 1], pg[, 2]) : NA/NaN/Inf in foreign function call (arg 2) Here's an example of data ...
2
votes
0answers
343 views

detailed output for nnet function in R

I am using the nnet function from the nnet package in R to develop a feed-forward multilayer neural network. I am interested in obtaining more detailed output of the prediction error associated with ...
2
votes
0answers
188 views

Misaligned columns in HTML tables using hwriter/xtable

I have been trying to convert a list into HTML table, using both xtable and hwriter R packages. Here is how the list looks like: structure(list(sex = structure(list(`study 1` = structure(c(2L, 1L), ...
2
votes
0answers
184 views

Plotting results of geographical analysis within shapefiles onto Google map tiles

I have performed a geographical analysis library(PBSmapping); library(RgoogleMaps); library(maptools) cases<-read.table("cases.csv") cases.ppp<-ppp(cases@coords[,1], cases@coords[,2], ...
2
votes
0answers
187 views

(R, Blotter) How to change color of trade markers on the chart when using chart.Posn() API?

Context: I have a list of transactions (trades) in a csv file. I like to import these transactions into R and then plot the trades on the chart so that I can see visually the entries and exits. I ...
2
votes
0answers
221 views

Using Apply on a data.frame with character and numeric variables

I'm trying to convert some exsiting loop based code to use R's apply function. As per the specs fo this project, no additional libraries (e.g. plyr) are allowed. This is how it currently works. ...
2
votes
0answers
133 views

Survey Weighted Random Effects Logit Model in R

I am trying to predict a binary outcome with a model that includes a random effect using survey data. I've included a description of the sampling design below, so feel free to comment on my survey ...
2
votes
0answers
56 views

R2OpenBUGS: modelling final treatment outcomes from intermediate outcomes

Is anyone using R2OpenBUGS? Should I rather be using r2winbugs? ... I am trying to model final (2-year) treatment outcomes (e.g. success, death, default or failure) for my sample of patients with a ...
2
votes
0answers
559 views

dbWriteTable(…, append = T) is overwritng in R

I am using RJDBC for accessing MySQL from R. Earlier I used to work with RMySQL which is not available for R 2.15. There were so many discussions around SO but still I couldn't able to use RMySQL ...
2
votes
0answers
172 views

merging two dendrograms at a specific node

I would like to either: remove a subtree and then merge a new subtree to the original dendrogram so that it is in the same position as the one removed. or replace a subtree with another one. I ...
2
votes
0answers
474 views

How do I sum over columns in a data frame, based on index number?

I have many dbf tables (outputs from an analysis in a different program) that need to be read into R and summarized. Each dbf has a number of columns that represent different edge or core habitat ...
2
votes
0answers
389 views

ggplot2 graph subtle changes after using knitr from markdown

Using knitr and markdown packages to weave Rmd files to markdown and then html is producing some unexpected behavior in the way that ggplot2 graphs are appearing in the final html file. For example, ...
2
votes
0answers
128 views

Assign new data point to cluster in kernel k-means (kernlab package in R)?

I have a question about the kkmeans function in the kernlab package of R. I am new to this package and please forgive me if I'm missing something obvious here. I would like to assign a new data ...
2
votes
0answers
264 views

How NaN in pearson corellation user-user similarity matrix in a recommender system is handled

I am generating a user-user similarity matrix from a user-rating data (particularly MovieLens100K data). Computing correlation leads to some NaN values. I have tested in a smaller dataset: User-Item ...
2
votes
0answers
303 views

Retrieve time zone based on locale country information (OS-independent)

Yet another date/time related question ;-) Before you aim and shoot Things are kind of messed up with a Germany + MS Windows + R combination as the following yields an invalid time zone: > ...
2
votes
0answers
695 views

rJava fails to install (MacOS, Red Hat)

I am experiencing the same rJava problem that many other people seem to of had at one point or another. The error occurs when R CMD INSTALL tests whether JNI programs can be compiled. The output ...
2
votes
0answers
114 views

ggplot2 rendering problems with gWidgets

There seems to be something odd going on with ggplot2 & gWidgets. See an example and the resulting image below. Is there a way to make the facet labels render properly in gWidgets? ...
2
votes
0answers
98 views

R: ESS fails to deal with Thai script variable, but RGui is fine?

I have some code that scrapes some data from a website that happens to be in Thai script. As part of the project I need to replace some of the Thai text. A small example follows: thaidf <- ...
2
votes
0answers
47 views

check.Renviron being ignored (OSX + R 2.15)

The semester has ended and I'm now bringing some packages up to R 2.15 (I did not want to change them while students were using them). So I'm doing my usual thing, which worked under R 2.14. As far ...
2
votes
0answers
556 views

R: How to Label Specific Contours using direct.label

I'm relatively new to ggplot2, and I'm having trouble adding appropriate labels to my contours. Using the classic volcano example, I can add labels to the default contour plot: library(plyr) ...
2
votes
0answers
143 views

Labeling coplot subplots

Is there a way to get the labels of each "given" variable to show up in it's respective subplot? For example, in the following plot (x and y numeric, c factor, called using coplot(y ~ x | c)), it ...
2
votes
0answers
184 views

Scraping restricted-access websites using R's XML package

I am trying to scrape data from a restricted-access website (which my institution's library gives me access to) using the XML package in R. The library gives me access using EZproxy. base <- "the ...
2
votes
0answers
141 views

R: creating a portfolio in Google Finance directly from R

Is there a way to create a portfolio A (CSCO,CAT,HPQ) in Google Finance directly from R? require(RGoogleDocs) auth = getGoogleAuth("abc@def.com", "password",service="finance") con = ...
2
votes
0answers
179 views

TimeVar Date for googlVis MotionChart R

Here is my code: ages <- c("12", "13", "14", "15", "16", "17") #building a dataframe subjects <- rep(ages, 9) date <- c("2008-05-01","2008-06-01", "2008-07-01", "2008-08-01", ...
2
votes
0answers
128 views

Pass the value of one argument to multiple functions within a function wrapper

I am trying to write a function wrapper to make multiple plots within the same chart. The function that I use is plotCI() in 'gplots' package sprPlot = function(data.frame, condition, ...){ ...
2
votes
0answers
443 views

R: Using the bigmemory library for classification with randomForest

has anyone been able to set up a classification (not a regressions) using randomForest AND the bigmemory library. I am aware that the 'formula approach" cannot be used and we have to resort to the ...
2
votes
0answers
217 views

Neural Network training using PSO in R

I need to train a neural network using PSO algorithm in R enviroment. I already know all the R packages about neural networks ( neuralnet, AMORE, etc. ), but no one of these includes PSO training ( ...
2
votes
0answers
222 views

Error from openNLP under R

library(openNLP) library(openNLPmodels.es) sentence="Por lo menos los paquetes modelo de idioma en Inglés y en español, previamente" tagPOS(sentence, language = "es") Error in .jcall(tagger, "S", ...
2
votes
0answers
204 views

Fitting linear regression model with sparse matrix predictors and sparse matrix response

What's the best way to get a least squares fit with a matrix response when using sparse matrices? Both my matrix of regressors and my matrix of responses are sparse. In my particular case, they are ...
2
votes
0answers
201 views

How to deal with Ids and names vertices with R + Igraph

I have a graph with names from 1 to 10 library(igraph) library(Cairo) graphics.off() g<- graph(c(0,1,0,4,0,9,1,7,1,9,2,9,2,3,2,5,3,6,3,9,4,5,4,8,5,8,6,7,6,8,7,8),n=10,dir=FALSE) ...
2
votes
0answers
152 views

How get fundamental cycles with R + Igraph

I have the next graph, library(igraph) library(Cairo) g<-graph(c(0,1,0,4,0,9,1,7,1,9,2,9,2,3,2,5,3,6,3,9,4,5,4,8,5,8,6,7,6,8,7,8),n=10,dir=FALSE) V(g)$name<-c(1:10) V(g)$label<-V(g)$name ...
2
votes
0answers
781 views

R Language: Error in read.table(file.path(data.dir, file_name1)) : no lines available in input

I am having hard time to code in R language. What I am trying to do is read large amount of data in to one data frame, and make pretty pictures. This is what I have: # assign data ...
2
votes
0answers
425 views

Integrating Rserve Into A Rails Application

This question is a follow-up to a question I posted earlier this year. Integrating R Statistical Package into Rails Application Based upon the response I received, I have landed on Rserve as the ...
2
votes
0answers
142 views

bug in geom_map when combined with coord_map?

The following is based on an example from the help page for geom_map: crimes <- data.frame(state = tolower(rownames(USArrests)), USArrests) library(reshape2) # for melt crimesm <- ...
2
votes
0answers
619 views

How to add a color key to a pairs() plot?

Goal: I have an adjusted pairs plot in R and I would like to add a color key to it. The panel backgrounds in the pairs plot show certain colors determined from a matrix of numbers. I would like to ...
2
votes
0answers
135 views

Can I embed an acinonyx plot into gWidgets (gWidgetsRGTK2 or gWidgetsQt) in R?

I am trying to create a simple data viewing gui for neurophysiological recordings from EEG or MEG using R in which one could select any time point in the recorded timeseries and see the corresponding ...
2
votes
0answers
716 views

Why is knitr unable to find framed.sty or kpsewhich?

knit('test2.rnw') processing file: test2.rnw |>>>>>>>>>>>>> | 20% ...
2
votes
0answers
515 views

new ggplot2 and custom boxplot code

I have been using a ammended version of Kohske's code from this post To which I add an additional argument for outlier.alpha. However, with the new ggplot2 release, its giving me an error. The first ...
2
votes
0answers
159 views

Sweave bugs (?): removes document options and inserts empty lines

Consider a file minimal.Rnw containing \documentclass[ paper=a4,% 210mm × 297mm pagesize% write page size to dvi ]{article} \usepackage[american]{babel} \usepackage{fancyvrb} \begin{document} ...
2
votes
0answers
101 views

unconditional warnings when recycling

I'll start my question by reminding what "recycling" is, and for that, I will quote another user (re: Brian Diggs' question about Implementation of standard recycling rules): One nice feature of R ...
2
votes
0answers
751 views

Keep downloading tweets within the limits using twitteR package

I'm trying to download tweets using twitteR package in R. I have a list of twitter users and I want to download their tweets. I keep getting the error Error in .self$twFromJSON(out) : Error: Rate ...
2
votes
0answers
804 views

Error: C stack usage is too close to the limit running 64-bit version of R in W/ Prof 64-bits 8GBRAM

I'trying to run the functionQ_objective from the package ROI but get a C stack error after the following instruction: foo <- Q_objective(Q = CovMat, L = rep(0, ncol(Myarray))) I have tried with ...
2
votes
0answers
256 views

histogram data from qplot

I am using qplot function to generate a histogram. It generates nice plots and i am very happy with the graphics. I also want to print the histogram data, is there any way to retrieve that from qplot ...
2
votes
0answers
874 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 ...
2
votes
0answers
247 views

Insert line on facet_grid margin facets only

I want to put a regression line on the marginal facets of a facet_grid, but I come up with a strange quirk where there are redundant lines on non-marginal facets also. library(ggplot2) library(plyr) ...
2
votes
0answers
132 views

RODBC - Select * Fails on Oracle but can Specify Columns

I am stumped. Using RODBC and connecting to an Oracle database, I have successfully explored my table using the following: sqlColumns(channel, "tablename", schema="schema")$COLUMN_NAME I can even ...
2
votes
0answers
142 views

Mismatching colours on two layers (ggplot2 v0.9)

I have a plot where geom_paths connect some geom_points. Both should be in the same colour but for some reason, there is often a mismatch between the two. This happens when there is missing data at a ...
2
votes
0answers
151 views

R: how to instantiate a custom split (usersplit) in rpart which requires a vector as a parameter

I'm inspecting tests/usersplits.R in rpart, trying to get my head around how to pass data to the split function. I'm trying to instantiate a number of goodness measures which compare treatment vs ...
2
votes
0answers
185 views

R - Change key colours in ancova (HH package)

I'm using the ancova() function in R (HH package) with a factor with more levels than the default 7 colours for lattice graphics. This means that ancova() fails to plot some of my panels as it can't ...

1 3 4 5 6 7 69