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)

0
votes
1answer
13 views

Create R Windows Binary from .tar.gz linux

This is sort of related to a previous post of mine. I have the need to use the bigmemory library on my 32bit Windows PC to do some ugly matrix calculations. Unfortunately, it appears that the ...
0
votes
0answers
9 views

Install particular version(2.15.2) of r-base on ubuntu

I am newbie to both Ubuntu and R. I am trying to install R 2.15.2 on ubuntu. Since the latest version of R is 3.0.X, I specified the version in /etc/apt/sources.list deb ...
-1
votes
1answer
21 views

How to convert a csv list to a character vector in R

I am new to R. I have a .csv file with a series of identifiers in a column that look like: F653 F763 F121 F123 ... These values are in a vertical column, and I want to import them into R in the ...
0
votes
0answers
13 views

R: get(): can't work out the correct environment for get within a function using ggplot2

Inspired by the Rattle library, I am trying to construct a function called density_plot which takes a numeric column from the weather data set and plots its distribution by raintomorrow. However, the ...
0
votes
1answer
18 views

How to make a plot of generalized beta distribution?

I am trying to plot the beta-gumbel distribution using R(software) by the following, The genreal idea is that, in the pdf of beta distribution, instead of plugging in x, we use the cdf of gumbel ...
0
votes
0answers
12 views

How to plot contours on a map with ggplot2 when data is on an irregular grid?

Sorry for the wall of text, but I explain the question, include the data, and provide some code :) QUESTION: I have some climate data that I want to plot using R. I am working with data that is on ...
0
votes
0answers
19 views

change a variable value according to others variables values in R

I want to change(or keep) a value of my dataframe according to the values of other variables in the same data frame. I've been looking for and answer without much success. This is an example of the ...
2
votes
1answer
26 views

How to completely eliminate margins in R

I have a specific problem in R, which consists in plotting text at specific cartesian coordinates over the plot. However, I cannot seem to eliminate completely the outer margin from the R plotting ...
1
vote
1answer
34 views

Parse “next day” time

Is there a function (built-in or packaged) that would allow parsing a time like "25:15:00" as "1:15 on the next day"? Unfortunately, as.POSIXct doesn't like it with the %X specification (equivalent to ...
0
votes
2answers
19 views

Extract and sort specific values from an R data frame

I´m quite new to R, and this might there be an easy answer to, but still: I have a data frame on the form df <- data.frame(c("a", "b", "c", "d", "e"), 1:5, 7:11, stringsAsFactors=FALSE) names(df) ...
0
votes
0answers
27 views

yield to maturity - nesting a function?

I cannot get the yield to maturity calculation to work within this function. I have replicated a solution that works outside this function but for some reason it is not working here. The function is ...
4
votes
1answer
28 views

Print dataframe name in function output

I have a function that looks like this: removeRows <- function(dataframe, rows.remove){ dataframe <- dataframe[rows.remove,] print(paste("The", paste0(rows.remove, "th"), "row was removed ...
2
votes
2answers
24 views

Adding missing rows

The format of my excel data file is: day value 01-01-2000 00:00:00 4 01-01-2000 00:01:00 3 01-01-2000 00:02:00 1 01-01-2000 00:04:00 1 I open my file with this: ts ...
2
votes
1answer
36 views

How to draw routes in open street maps using Python/R?

I have data in the form of lattitude and longitude co-ordinates. I want to plot a route for those co-ordinates in OSM using either Python or R. Can somebody tell me where can I begin? I've not worked ...
2
votes
2answers
53 views

Conditional Cumulative Sum in R

I have a time series data frame and want to compute cumulative returns for stock symbols intra-day for a range of dates. When the symbol and/or date changes the cumulative return should reset. Any ...
0
votes
0answers
11 views

standard deviation M5P

I am using the M5P() trees from the RWeka package. I have two questions: Interpretation of output: What do the numbers in brackets mean (see example below)? M5 pruned model tree: (using smoothed ...
0
votes
0answers
23 views

Websockets in R

I managed to establish a connection in R to Mtgox websocket with following specs: url: https://socketio.mtgox.com/mtgox?Currency=USD port: 80 specs: https://en.bitcoin.it/wiki/MtGox/API/Streaming ...
-1
votes
1answer
20 views

Error in Data Frame when creating a plot with ggplot2 and geom_point() and stat_function

I've got a problem when creating a plot with ggplot2 > setwd("c:/tesis/emisiones") e<-read.csv("fh3pco1.csv",header=T) attach(e) names(e) 1 "VehCat" "Component" "TrafficSit" ...
0
votes
1answer
46 views

How to evaluate prediction results in R?

I am quite new to R. I am working with a very big data set (cvs). my goal is predict the values on a certain column in the data set, using the all others, and in the end compare the prediction with ...
0
votes
0answers
35 views

Failing a unit test with an exception

In svUnit, the checkException (documentation here) function will pass if the expr generates an exception when run. This seems very counter-intuitive. If your code operates as expected, it won't ...
0
votes
2answers
34 views

How to exchange rows for columns in R

I have a dataframe that consists of 47 columns and 592 rows. I plan to analyze it using propensity scoring and believe that predict() will give me what I want: a propensity score is the conditional ...
0
votes
1answer
34 views

Random Effects with count Models

I'm trying to do a hurdle model with random effects in either r or stata. I've looked at the glmmADMB package, but am running into problems getting it download in R and I can't find any documentation ...
2
votes
2answers
38 views

The arcane formals(function(x){})$x

What is the object formals(function(x){})$x? It's found in the formals of a function, bound to arguments without default value. Is there any other way to refer to this strange object? Does it have ...
1
vote
0answers
27 views

Error installing packages from github

I can't install packages from github: > install_github('cranvas', 'ggobi', args="--no-multiarch") Installing github repo(s) cranvas/master from ggobi Installing cranvas.zip from ...
0
votes
1answer
30 views

How to substitute variable in file path

I know nothing about R, but would like to know to substitute a variable that could be used to replace the /home/subdirectory/DataFiles/ in the following (snippet) of R code: x1 <- ...
4
votes
2answers
49 views

logical test if object is a directory

Let's say I just created this directory and file: dir.create("foo") cat("bar", file="bar") #both files exist: file.exists("foo") file.exists("bar") I want to test both foo and bar to test ...
0
votes
0answers
35 views

Temporary R minimal environment

I have 100+ Linux servers that I want to run R code on for analysis or whatever. Installing R on each and every one of them I think is unfeasible. So I am wondering if it's possible to push a ...
1
vote
2answers
35 views

transform one long row in data-frame to individual records

I have a variable list of people I get as one long row in a data frame and I am interested to reorganize these record into a more meaningful format. My raw data looks like this, df <- ...
0
votes
1answer
18 views

How can I split a multiply imputed dataset created in Amelia?

I have imputed missing values using Amelia thereby creating 5 multiply imputed datasets. Now, I would like to split this multi-dataset, e.g. one set for year => 1990 and one set for year =<1990. ...
0
votes
0answers
12 views

Unable to access GSM List in GEOquery R

I am working with a GSE set that contains 2 series matrices and would like to covert the whole thing to an expression set so that I can work with it in Limma. I have loaded the GSE using the following ...
0
votes
1answer
17 views

Display just the first x value and change the scatter colour

In below code I'm attempting to change the colour of the scatter points to blue and limit the number of 'x' entries to 1 using xlim=c(0,1) & color='blue' Here is the code : xx = c('test1' , ...
0
votes
0answers
30 views

R - compute values for column of data frame by subtracting values from another data frame

As a follow up to my previous question, I have the following problem (I don't know how to google this, because I can hardly explain what I want to do - and sorry for the question title). My data ...
0
votes
1answer
37 views

R convert word into a sum of values

I have a column with 13 characters (2000 rows) . And i would like to convert them to value. This value should be the sum of all values that are assigned to a specific character. example ...
1
vote
0answers
18 views

Is there a way to cherry-pick lag variables in a VAR model?

I modelling two time series of daily data. One is sign-ups and the other terminations of subscriptions. I'd like to predict the latter using the information contained in both variables with a VAR ...
0
votes
0answers
17 views

Scatter diagram not displaying correctly

Below is code I'm using to display a scatter diagram : xx = c('test1' , 'test2' , 'test3') yy = c(6 , 7 , 8) df <- data.frame(xx , yy) ggplot(df, aes(x=xx, y=yy)) + geom_point(alpha = .01) + ...
-1
votes
1answer
32 views

removing elements in a list with less than n

This is a simple question, how can I know which element in a numeric list is less than a n number, for example in this dummy example, how to get the elements with less than 5 elements? list <- ...
-1
votes
1answer
60 views

Using R to calculate the same as a formula in excel [closed]

Nether R nor general statistics are my strong point. So, as part of a build for a client, they have requested that some graphs have binomial data plotted, and they have provided me with a few formula ...
-8
votes
0answers
32 views

How to put a stop loss order for orginal order at the same bar

I tried to put a stop loss selling order for original buy entry order at the same daily bar, however quantstrat retuned error message. Does anyone know how to do that?
1
vote
0answers
19 views

How to load an RData file with QlikView?

Is anybody aware of loading a RData file with QlikView? The reason why I would like to do this that I have a large dataset in R that I would like to analyse interactively with QlikView. Moreover, it ...
0
votes
2answers
29 views

r select column element based on condition

> w A B 1998-01-08 -0.0051653999 0.007 1998-01-09 0.0064191599 -0.008 1998-01-12 -0.0018169993 0.009 1998-01-13 0.0046482541 -0.005 1998-01-14 0.0080997329 -0.006 ...
1
vote
3answers
43 views

counting occurences in column and create variable in R

I am new on R and i have a data.frame , called "CT", containing a column called "ID" containing several hundreds of different identification numbers (these are patients). Most numbers appear once, but ...
0
votes
0answers
25 views

Chemical formula manipulation in R (possibly through RCdk)

is there any RCdk user? I need to perform some simple manipulation on a explicit chemical formula. Namely, I want to increase or decrease the number of certain elements. As example, given the ...
0
votes
1answer
37 views

R: weird y-axis in frequency/density plot (ggplot2)

I have data from two samples and I want to plot a frequency distribution plot in R. I have the reference done in Excel: I uploaded in R the data (HistSerp). It's 136 obs. of 2 variables. ...
1
vote
1answer
19 views

Sweave/ODFWeave and tracking code chunks

I am getting started with the reproducible research tools in R, and I'm pretty excited about the prospects. Sweave/Knitr/Markdown, all that stuff is great. I use RStudio, and they have done a great ...
1
vote
1answer
31 views

Add na.omit as argument in a function

I have the following list of pvalues pval.list <- list(list(a=c(0.05, 0.0001, 0.32, 0.45), b=c(0.1,0.12,0.01,0.06), c=c(0.1,0.12,0.01,0.06), d=c(0.01,0.02,0.03,0.04)), list(e=c(0.04, NA, ...
0
votes
3answers
44 views

Saving and loading history automatically

I'm using the R software for statistical analysis and am sad that it doesn't preserve and restore my prompt command history. Indeed, pressing the up arrow on a newly started interactive R session will ...
2
votes
1answer
37 views

Trying to get started with doParallel and foreach but no improvement

I am trying to use the doParallel and foreach package but I'm getting reduction in performance using the bootstrapping example in the guide found here CRANpage. library(doParallel) library(foreach) ...
0
votes
0answers
24 views

RMySQL Deadlock work-around

I am running a R-script over multiple cores which inserts data into a table which already holds over 700m rows. Because the table is becoming too large, deadlocks are becoming a common occurrence, ...
0
votes
0answers
23 views

Resizing plot graph from R in Emacs automatically for Ubuntu 13.04 Bug

In Ubuntu 13.04, when plotting using R, it will now not automatically display. I am aware this is a bug, but I am looking for a temporary solution. Does anyone have an Emacs or R solution how to ...
0
votes
1answer
14 views

Including arrows in NMDS plot in R vegan package

I'm using the vegan package to plot a NMDS in R analyzing community similarities. This is based on a community matrix that includes different treatments: NMDS=metaMDS(community_matrix,k=2,trymax=100) ...

1 2 3 4 5 605