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)

1
vote
2answers
9 views

R, GET and GZ compression

I am building clients onto RESTful APIs. Some links let me download attachments (files) from the server, and in the best case these are .txt. I only mention the RESTful part since it means that I ...
0
votes
0answers
8 views

Storing XML node values with R's xmlEventParse for filtered output

I have a huge xml file (260mb) with tons of information looking like this: <mydocument> <positions> <FrameSet> <Frame> there are around 40 different FrameSet ...
0
votes
0answers
12 views

Transforming coordinates form UTM 27 to Alber's Equal Area NAD 83 seems to convert 27 to 83 then to Albers, making my points 200m off

I've set some predefined projections utmZ12N27<- CRS("+proj=utm +zone=12 +ellps=GRS80 +datum=NAD27 +units=m +no_defs +towgs84=0,0,0") aea<- CRS("+proj=aea +lat_1=29.5 +lat_2=45.5 +lat_0=23 ...
0
votes
0answers
14 views

Issues when using randomForest in caret with ROC as optimization metric

I'm having an issue when constructing random forest models using caret. I have a dataset of about 46k rows and 10 columns (one of which is the optimization target). From this dataset, I'm trying to ...
0
votes
0answers
9 views

R: generalized impulse decomposition vs. Cholesky decomposition for var models

I am using R package "vars". For example: library(vars) data("Canada") mymodel <- VAR(Canada, p = 2, type = "const") I am interested in running impulse response analysis, e.g.: vec.irf <- ...
1
vote
1answer
35 views

Recursively editing a list in R

In my program, I am recursively going over a nested list and adding elements to an overall list that I will return. There are a few details to be taken care of, so I can't just use unlist. ...
-1
votes
0answers
22 views

Create a term frequency matrix using 2 columns from a csv file, in R? [closed]

I'm new to R. I'm mining data which is present in csv file - summaries of reports in one column, date of report in another column and report's agency in the thrid column. I need to investigate how ...
0
votes
1answer
22 views

R, Sum frequency data frame by name

i have a data.frame that looks like this: Name freq 1 species1 4 2 species2 8 3 species1 7 4 species1 ...
-2
votes
2answers
1k views

How get plot from nls in R?

In R I use nls to do a nonlinear least-squares fit. How then do I plot the model function using the values of the coefficients that the fit provided? (Yes, this is a very naive question from an R ...
-4
votes
1answer
21 views

How to use lm.fit instead on lm

I want to use lm.fit for speed, but second version gives NAs sum <- summary(lm(y~x)) slope <- sum$coefficients[2] or sum <- lm.fit(as.matrix(x,ncol=1),y) slope <- ...
1
vote
1answer
28 views

find all disjoint (non-overlapping) sets from a set of sets

My problem: need to find all disjoint (non-overlapping) sets from a set of sets. Background: I am using comparative phylogenetic methods to study trait evolution in birds. I have a tree with ~300 ...
-9
votes
0answers
70 views

How can I find the largest perpendicular of a polygon in R?

I'm trying to find the largest perpendicular for many separate polygons. I'm using ggplot to construct polygons from data. I'm trying to avoid writing code to do this, I was wondering if a function ...
2
votes
0answers
16 views

Installing R packages on Windows 7

On Windows 7 x64, I've got version 3.0.0 of R installed. Further, I've also set the environment variable R_LIBS_USER to point to a network drive. In rgui.exe, executing: Sys.getenv("R_LIBS_USER") ...
1
vote
1answer
20 views

calculating CDF for different run extrated from a text file

I have a text file with four columns as below. the first column shows the name of experiment, second column shows the number of repetition (because each experiments is repeated for example 10 times), ...
1
vote
0answers
22 views

R 'object XX not found' error thrown inside function, but not in script

I am fairly new to R, so my apologies if this question is a bit silly. I am calling a function in an external package ('mmlcr', although I don't think that is directly relevant to my problem), and ...
0
votes
0answers
27 views

Executing function on objects of name 'i' within for-loop in R

I am still pretty new to R and very new to for-loops and functions, but I searched quite a bit on stackoverflow and couldn't find an answer to this question. So here we go. I'm trying to create a ...
0
votes
0answers
15 views

Displaying factors and levels with logistic regression in R

I have a dataframe model.vars containing discretized data on which to perform logistical regression, as follows: for(i in varnames) { modelformula = paste("dep_var~ ", as.factor(i)) ...
0
votes
0answers
15 views

R Shiny server dateRangeInput error

I keep finding this error Error: could not find function "dateRangeInput" whenever i try to run the following application. server.R library(shiny) library(ggplot2) library(shinyExt) ...
0
votes
2answers
26 views

combine two dataframes in R based on common columns

I have to combine two data-frames which look like this I want to take the common column among the data-frames and join them together. Rows in two data-frames will be completely different. a b ...
0
votes
1answer
29 views

Rank correlation matrix in R

How do I produce a rank correlation matrix in an elegant way in R given a data frame with many columns? I couldn't find a built-in function, so I tried > test=data.frame(x=c(1,2,3,4,5), ...
1
vote
1answer
35 views

as.formula in R doesn't seem to accept a name that starts with a number followed by _

How can I avoid getting the following error. The as.formula() does not seem to take a variable starting with a number and followed by _ (underscore). I am generating these variables dynamically and I ...
0
votes
3answers
34 views

Convert a nested list to a list

I have a brief question, I would like to unnest this nested list: mylist <- list(a = list(A=1, B=5), b = list(C= 1, D = 2), c = list(E = 1, F = 3)) Expected ...
0
votes
3answers
35 views

Writing variables to a file with writeLines

I found this link very helpful in understanding how to write lines to a file: Write lines of text to a file in R Unfortunately though I'm finding that I do not know how to use this line to write a ...
0
votes
1answer
24 views

apply a function in a data frame based on values from another data frame

I have these two data.frames df1 <- data.frame(V1=c("A", "A", "B", "B", "B"), V2=c(0.8, 0.2, 0.3, 0.4, 0.9)) V1 V2 1 A 0.8 2 A 0.2 3 B 0.3 4 B 0.4 5 B 0.9 df2 <- data.frame(V1=c("A", ...
-4
votes
0answers
24 views

R: Creating a 3d scatterplot with two groups of points

I have two data files in the following form: data1.txt x1 y1 z1 x2 y2 z2 x2 y3 z3 data2.txt x1 y1 z1 x2 y2 z2 x2 y3 z3 By using R, I would like to create a 3-D scatter plot where the points ...
0
votes
1answer
54 views

backtest simple strategies using R

I am looking to do simple backtesting that could properly keep track of pnl, rebalance portfolio, liquidate etc. I need it to do things a bit differently than backtest. That is, backtest splits things ...
0
votes
2answers
54 views

tableGrob: set the height and width of a grid.table

I'm trying to make a function that will give me a plot ready for indesign, illustrator or inkscape. In trying to do so, I have 2 problems I cannot solve. 1) set the width and height of my plot (or ...
0
votes
0answers
10 views

How to customize axis when plot multiple time series data in 1 panel?

My situation is quiet like this question, how ever i need to plot multiple time series(or fixed length vectors) in one panel. (I want to upload a picture but it says i dont have enough reputation ...) ...
0
votes
0answers
11 views

R: Associate values to tips in phylogeny

I have a phylogeny and some data (traits values). I've reconstructed trait values for all nodes using ace in caper. I used makeNodeLabel in ape to associate the reconstructed trait values with their ...
0
votes
0answers
38 views
+50

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

Given 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) ...
1
vote
3answers
56 views

Look up (and Replace) values in data frame based on lookup table (with more than one column)

UPDATE Below :Original I'm trying to find the most elegant (simple and concise) way of replacing the value of certain columns based on matching two columns from another data frame. Here is the ...
0
votes
1answer
8 views

setGraphicsEventEnv() not supported under Linux?

I'd like to run a script containing an interactive part on a Ubuntu 64 bit machine. Unfortunately it fails throwing the following error: Error in setGraphicsEventEnv(which, as.environment(list(...))) ...
0
votes
0answers
20 views

Converting from a Formula object to a list

In R, I would like to iterate over a formula object. R automatically converts a formula to a parse tree, so I see no reason why I shouldn't be able to iterate. For example, f <- ~x + y has ...
1
vote
1answer
46 views

Merging more than 2 dataframes in R by rownames

I gather data from 4 df's and would like to merge them by rownames. I am looking for an efficient way to do this. This is a simplified version of the data I have. df1 <- data.frame(N= ...
1
vote
1answer
22 views

R: merge data frames for cohen's kappa

I'm trying to analyze some date using R but I'm not very familiar with R (yet) and therefore I'm totally stuck. What I try to do is manipulate my input data so I can use it to calculate Cohen's ...
2
votes
2answers
34 views

How to find offset diagonal of a matrix?

Is there an easy way to extract a vector of an 'offset' and 'reverse' "diagonal" (the x's) of a matrix in R? [,1] [,2] [,3] [,4] [,5] [1,] x 0 0 0 0 [2,] 0 0 0 0 x ...
1
vote
3answers
48 views

Closest pair for any of a huge number of points

We are given a huge set of points in 2D plane. We need to find, for each point the closest point within the set. For instance suppose the initial set is as follows: foo <- ...
0
votes
1answer
39 views

All Paths Between 2 vertexes in R

I use igraph. I want yo find all the possible paths between 2 nodes. For the moment, there doesn't seem to exist any function to find all the paths between 2 nodes in igraph I found this subject ...
0
votes
0answers
11 views

How to perform a Blocked MRPP in R?

Is it possible to perform a blocked MRPP in R? Thank you for your comments and help.
1
vote
2answers
38 views

Breaking up (melting) text data in a column in R?

I have a csv file which contains data in the following format: PrjID, Objective 1001 , (i) To improve efficiency (ii) Decrease cost (iii) Maximize revenue 1002 , a) Have fun b) Learn ...
1
vote
2answers
60 views

What if I want to web scrape with R for a page with parameters?

The page I would like to scrape here: http://stoptb.org/countries/tbteam/searchExperts.asp requires the submission of parameters in this page: http://stoptb.org/countries/tbteam/experts.asp in order ...
3
votes
3answers
76 views

Replacing nested loop in R

I am very new to R and searched about this on forums but couldn't get a close enough solution for this. I am trying to do a mapping between the ip address & corresponding geo locations. I have 2 ...
0
votes
1answer
24 views

How to find singular matrix eigenvector?

I have a 800x800 singular (covariance) matrix and I want to find it's largest eigenvalue and eigenvector corresponding to this eigenvalue. Does anybody know wheter it is possible to do it with R?
-1
votes
1answer
18 views

What is the correct way to specify weights in bigglm with SQLite as backend database?

How do you specify weights in bigglm? I tried the following code m <- bigglm(f3~f1+f2,data=con,tablename="t",weights=~weight,chunksize= 5000,family =binomial()) where f3 and f1 and f2 and ...
2
votes
2answers
35 views

R's Format function returning an odd result

Why does format(4444444444444444444,scientific=FALSE) return "4444444444444444672"? I thought it might be an integer precision thing, but this number is relatively small. Thanks! I'm running R ...
0
votes
1answer
45 views

lpsolve package in R

I'm using lpsolve package for linear programming but have read in its tutorial that only solves for non-negative variables. Here's my code: library(lpSolve) #linear programming solver c = c(30, 18, ...
0
votes
0answers
43 views

data munging in python compared with R (from an excel sheet)

I have a hypothetical example here with file attached (Excel File Link) where I'm loading in a file from excel and formatting it into something I can work with to either analyse or store more ...
1
vote
2answers
28 views

Combining two ecdf plots with different

At the moment I`m writing my bachelor thesis and all of my plots are created with ggplot2. Now I need a plot of two ecdfs but my problem is that the two dataframes have different lengths. But by ...
0
votes
1answer
29 views

averaging values in a table by recognizing the name of the column header

I have the following table called m: Identifier DAT_SN_e15.5_1 DAT_SN_e15.5_2 DAT_SN_p2_1 DAT_SN_p2_2 100009600 3 1 0 0 100009609 13 4 1 ...
0
votes
1answer
27 views

how to use a variable in grepl function within a loop-R

I am new to R and, have some problems with looping and grepl functions I have a data from like: str(peptidesFilter) 'data.frame': 78389 obs. of 130 variables: $ Sequence : ...

1 2 3 4 5 599