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.
1
vote
1answer
38 views
How do I calculate (age-specific) mortality rates in R?
Using data in the following form, in which ways can I calculate the (age-specific) mortality rate in the R programming language?
head(data)
## age gender zone Class misc bonus duration ...
4
votes
2answers
31 views
How to construct a function call to pmax from the columns of a matrix
I want to use pmax to compute the row-wise maximium of a matrix A:
A = matrix(sample(1:20),10,2)
pmax(A[,1],A[,2])
this works fine. But the problem is that I don't know the size of A, so the call ...
2
votes
2answers
46 views
When running PL/R on PostgreSQL, can R handle data bigger then RAM?
When I use R open source, if not using a specific package, it's not possible handle data sets bigger than RAM memory. So I would like to know if it's possible handle big data sets applying PL/R ...
3
votes
3answers
55 views
How can I reshape my data.table efficiently
I have a data.table DT
set.seed(1)
DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12))
DT
x y v
1: 1 A 29
2: 1 B 92
3: 1 A 100
4: 1 B 82
5: 2 A 28
6: 2 B 26
...
-4
votes
0answers
52 views
How to replace values between rasters? [closed]
I have two directories:
Directory 1 - 1000 files (variable one,700 kB each,smn)
Directory 2 - 1000 files (variable two,700 kB each,smoitu)
these files are rasters with the same dimensions and ...
-1
votes
0answers
33 views
Variable names are changed when I attach() data frame in R
I was trying to attach a data frame by:
attach(DataFrame)
but after that, some of the variable names like:
CerealIndex1961, CerealIndex1962, CerealIndex1963, CerealIndex1964, CerealIndex1965
...
2
votes
3answers
24 views
Plot multiple individual by one function?
Could you please help me to solve this problem:
I have a database like below:
Animal Milk Age
1 11.96703591 1
1 13.41236333 2
1 14.85769075 3
1 16.30301817 4
2 17.74834559 1
2 ...
0
votes
1answer
44 views
An issue with a legend in ggplot2
I am asking you because I have a problem with a legend in ggplot2.
Here's a simplified case
library(ggplot2)
library(datasets)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group, ...
1
vote
0answers
36 views
R and data.table package syntax in eclipse
I'am using Eclipse and StatET to script in R.
I am using the great data.table package which introduce the syntax :=
For eclipse it is a syntax error but it is not the case in the context of this ...
0
votes
0answers
24 views
Calling Cygwin from within R
I was trying to invoke Cygwin from within R with the following command:
shell("cd C:\\cygwin\\bin & bash --login -i testfile2.txt", intern = T)
Within Cygwin I tried to invoke another program ...
3
votes
3answers
38 views
automatic filtering of measurement data within R
my question is about automatic filtering of measurement data, because I have several hundred files to process.
The file-structure looks like:
test1 <- ...
1
vote
2answers
33 views
reshape/remould data frame to create normalized bar chart and pie chart
I have the following data_frame structure which has been read from a csv file (appended). Basically, this summarises for each Operator (A M D L J) whether their score is Excellent, Good, Ok, Poor or ...
7
votes
1answer
42 views
Data.table objects turn into data.frame after calling fix()
Every time I run the command fix(DT) on a data.table, after closing the fix window, DT turns into a data.frame object. Is this normal?
library(data.table)
DT <- data.table(a = 1:2, b = 2:3)
> ...
0
votes
0answers
9 views
SlidingWindowTest Function not in R DMwR Package
While recently building a model I found that the latest version of DMwR package does not contain slidingWindowTest or growingWindowTest. Could anyone point me out to any existing alternatives?
0
votes
2answers
50 views
Return multiple values with function in R
Iam trying to calculate multiple values with my own function from a dataframe. The function currently returns only one value in a dataframe. It seems my for loop is not working correctly. I've also ...
0
votes
1answer
28 views
Plot specific values on x axis using plot() in R
Let's say I have some points:
a=c(1.234, 23.332, 3.433, 34.53)
b=c(112, 234, 221, 23)
I would like to plot them by having "a" on the x axis and "b" on the y axis.
plot(a,b)
This will give the ...
3
votes
0answers
28 views
creating data.table::ITime vector
I was surprised doing this, using the data.table package:
a = as.ITime('12:01:00')
str(a)
Class 'ITime' int 4326
a = as.ITime(c('12:01:00','12:00:02'))
Message d'avis :
In if (!is.na(y)) ...
1
vote
3answers
38 views
How to color plot in R
I have a two dimensional plot. Every point on it has some value (say, y) ranging from 0 to 1. I want to show these values on a plot using colors. For example, if any point has a value less than 0.25 ...
0
votes
0answers
28 views
To find subscript index in strsplit function
How to find subscript index number when we use strsplit() function in R.
My output is
N712SW|2008 8
N772SW|2008 19
N428WN|2008 8
what will be my output if I split by tab first ...
0
votes
0answers
15 views
Answer to how to install SSOAP when upgrading to R-3.0.0 [closed]
This is a problem and an solution, just in case other people hit the same issue. I have been having problems rebuilding the SSOAP package when upgrading to R3.0.0 as the
...
0
votes
1answer
26 views
Error opening SHP file in R using maptools readShapePoly
I am new to R and was following the following tutorial on the ggplot2 package found here. However the readShapePoly() function throws an error whenever I try to load the basic shapefile. I have used ...
1
vote
3answers
28 views
r array-slice of programmatically determined dimension
Is there a way of elegantly specify a slice in a multidimensional array in R, whereby the number of dimensions is not known beforehand?
For instance, for a 5-dimensional array, slicing out the last ...
0
votes
1answer
34 views
Use of facet_wrap in ggplot2
Want facet_wrap to have different parameters for each plot. Example below:
x = c(43,22,53,21,13,53,23,12,32)
y = c(42,65,23,45,12,22,54,32,12)
df = cbind(x,y)
df = as.data.frame(df)
meany = ...
0
votes
1answer
27 views
Using ifelse with write.table
I'm writing a file using ifelse:
ifelse("out.csv" %in% list.files(),
write.table(summary, "out.csv", sep=",", col.names=FALSE, row.names=FALSE, append=TRUE),
write.table(summary, ...
3
votes
3answers
60 views
Conditional counting in R
I have a question I hope some of you might help me with. I am doing a thesis on pharmaceuticals and the effect from parallelimports. I am dealing with this in R, having a Panel Dataset
I need a ...
2
votes
1answer
27 views
Augment a bounded Latin Hypercube in R
I have created a table of parameter sets sampling the parameter ranges using a Latin Hypercube.
library(tgp)
rect <- rbind(x1 = c(25,500),
x2 = c(50,5000), ...
0
votes
0answers
21 views
How can I make cell size in an heatmap mediate data resolution using R?
Giving 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
2answers
34 views
Minimum spaning tree with Kruskal' algorithm
How i can calculate im R(3.0.0 - Linux x32) minimum spanning tree with Kruskal's algorithm?
I create an weighted full graph with igraph (0.6.5) library as folws:
set.seed(1234567890)
g <- ...
0
votes
1answer
36 views
Different results with “same” code
I am asking a simple question. Why are these two code fragments not the same?
pNl <- {}
for(i in length(x):length(x)-250) {
temp <-x[i] - x[i-1]
pNl <-append(pNl, temp, ...
0
votes
3answers
30 views
How to count levels of a factor in a data.frame, grouped by another value of that data.frame [GNU R]
I have a data.frame like this
VAR1 VAR2
1999 USA
1999 USA
1999 UK
2000 GER
2000 USA
2000 GER
2000 USA
2001 USA
How do I count any level of VAR2 for each year?
What I want is a plot, where the ...
0
votes
1answer
29 views
How can I mark all points with a given number property in coordinates?
I currently have this R-script:
library(ggplot2)
png("collatz-max-in-seq.png", width = 512, height = 800)
mydata = read.csv("../collatz-maxNumber.csv")
# Prepare data
p<-ggplot(mydata, aes(x=n, ...
0
votes
0answers
34 views
R linear regression r-squared inside loop different ot outside loop
I am currently running three regression equations that loop over four data sets. When I report the r-squards inside the loop the values are considerably different than when I do the same operation ...
0
votes
1answer
27 views
R script to fetch pathway from KEGG without using any package
I am creating an R package for text mining, and i want to add a function in the package to get the list of pathways from KEGG. I am able to fetch the pathways from wikipathways but unable to get from ...
3
votes
0answers
20 views
summary {Hmisc} drops category?
I am trying to get a crosstab with percentages from this file using Hmisc. But why is summary() dropping a category ("OTHERS") from the variable OCCUPATION?
library(Hmisc)
summary(ID ~ OCCUPATION, ...
0
votes
0answers
18 views
How to import a site-package from rJython?
I am trying to call some functions in openopt package for Python from R using the rJython package. I have the NumPy, SciPy, and OpenOpt installed for Python 2.7.4 on my 64 bit windows 7. Importing ...
0
votes
0answers
23 views
Fail to get retweets with R and Twitter API
I'd like to track the path in which a tweet below was retweeted, which seems not supported by the twitteR package yet. Therefore I tried with packages RCurl and RJSONIO, but failed. Below is what I ...
2
votes
3answers
46 views
concatenating Lists in R
I have written a function that it's output is a list. I want to put my function into a loop and I'd like to store output of each iteration (which is of course a list) into a bigger list. In other ...
0
votes
1answer
21 views
which is the best criteria for choosing between ets() and auto.arima() functions in R?
I am using ets() and auto.arima() functions from forecast package to predict future values in R. Which criteria should be used to choose the best model between these two?
Following is the accuracy ...
1
vote
2answers
42 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 ...
0
votes
1answer
27 views
Size and space between subplots in ggplot2
I have a subplot as following
mydata <- data.frame(side1=rep(LETTERS[1:3],3,each=9),side2=rep(LETTERS[1:3],9,each=3),widget=rep(c("X","Y","Z"),9*3),size=rep(1/3,9*3),strength=runif(27,-1,1))
...
0
votes
1answer
14 views
fPortfolioBacktest could not be installed
I could not install the fPortfolioBacktest
Because the link is missing. Only Linux and Mac are available.
to install:
install.packages("fPortfolioBacktest",
...
2
votes
0answers
40 views
Missing object error when using step() within a user-defined function
I have been struggling with this for a while and any help would be much appreciated. I am trying to write a function that runs several stepwise regressions and outputs all of them to a list. ...
-2
votes
1answer
42 views
SQL Cube vs. R Language [closed]
I have been studying the R language for data analysis and find it very interesting. While I was doing a search, I came across an article for SQL Cubes. It seems that a SQL Cube is a type of query ...
0
votes
1answer
30 views
Inserting function argument as string within body of function
I am trying to write a function using aggregate() that will allow me to easily specify one or more variables to list by and their names.
data:
FCST_VAR OBS_SID FCST_INIT_HOUR ME
WIND ...
2
votes
0answers
53 views
What's the fastest way to get CSV output into a data frame?
I have a program that outputs lines of CSV data that I want to load into a data frame.
I currently load the data like so:
tmpFilename <- "tmp_file"
system(paste(procName, ">", tmpFilename), ...
0
votes
0answers
45 views
Installing R in ubuntu
I am trying to install R in ubuntu, but faced the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be ...
2
votes
1answer
30 views
How to put space between groups of stacked bars in ggplot2
I'm trying to group the stacks spatially in pairs such that the 0W treatment is close to the corresponding 6W treatment with bigger spaces between pairs of different treatments. I've included a ...
0
votes
2answers
30 views
ggplot2 annotate using a measure unit other than the axis variable
Hi I've got the following code
d1=data.frame(a=c(4,5,6,7),b=as.Date(c('2005-12-31','2006-12-31','2007-12-31','2008-12-31'),"%Y-%m-%d"))
a = ggplot(d1,aes(x=b,y=a)) + geom_line()
a + ...
1
vote
2answers
33 views
R aggregate over time series, missing dates for some groups
I have a problem when I aggregate data over a date series and a group where some dates are missing in one but not all of the groups.
dates <- seq.Date(as.Date("2010-01-01"), by=7, length.out=5)
...
0
votes
1answer
28 views
Python rpy2 and quantmod examples
Python programming language has helped me a lot in developing financial data analysis applications. Alternatively, there is the R for data analysis too, which has dedicated financial data analysis ...


