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.
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
31 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 ...
2
votes
2answers
41 views
alternative to passing large matrices in R
Using Globals instead of passing large arrays in Matlab
my question is precisely the same as the one above but I want an answer with respect to R.
I am right now passing huge matrices between ...
2
votes
0answers
32 views
calling `file.show` on a directory causing crash
I called file.show on a variable that contained a path instead of a file and R crashed.
When I brought it back up, I tested
file.show("~")
And I get a consistent crash.
Can anyone confirm? ...
1
vote
1answer
34 views
how to pass a variable to lm within a function in R
Here is a (non)working example of how I would like to do things. The restriction is that all this has to happen within a function and that K should not be appended to x. What's the right way to do ...
0
votes
1answer
48 views
What does this summary data mean?
I am using sample algae data to understand data mining a bit more, i have used the following commands:
> data(algae)
> algae <- algae[-manyNAs(algae),]
> clean.algae ...
3
votes
2answers
53 views
Renumbering in R
I am trying to renumber a group of people in R...
Let's say I have this data set (below). FamID indicates a family, and PtID indicates an invdividual patient that relates to the family. So for ...
2
votes
0answers
54 views
how to determine the source of this error message: mc(): not 'converged' in 100 iterations
The code below is a mixture of R and Python, which is used for determining the Outliers values from a list of values.
When I run this code :
#!/usr/bin/python
from rpy import *
...
2
votes
1answer
27 views
How can I apply fisher test on this set of data (nominal variables)
I'm pretty new in statistics:
fisher = function(idxToTest, idxATI){
idxDependent=c()
dependent=c()
p = c()
for(i in c(1:length(idxToTest)))
{
tbl = table(data[[idxToTest[i]]], data[[idxATI]])
...
2
votes
3answers
46 views
Change half hourly data into hourly in R by removing every other row
I am stuck on a very simple problem. I have a dataset and the data interval is half hourly. I want to change the data into hourly. It can be done easily by removing every other rows or rows which has ...
1
vote
0answers
39 views
adjusting midpoint in scale_colour_gradient2()
So I'm generating a heatmap of p-values using the following:
library(ggplot2)
p <- ggplot(res, aes(x=group, y=variable)) +
geom_tile(aes(fill = value), colour = "yellow") +
scale_fill_gradient(low ...
1
vote
2answers
60 views
How to convert a matrix of strings into matrix of 0 and 1's
Hi I have a dataset which looks like this
name1 a b c d
name2 a c e g i
name3 t j i m n z
dput output:
structure(c("name1", "name2", "name3", "a ", "a", "r ", "b", "c", "k ", "c", "e", ...
1
vote
1answer
21 views
Display the x-axis on ggplot as month only in R
I have a very simple question here. I have a dataset from 2009-2012. I want to plot the data with facets. I have created the faceted plot as follows.
R-code
...
1
vote
2answers
32 views
questions about axes and mtext
I am swimming backwards in my R knowledge. Please help!
ExampleData:
Site, Aluminum_Dissolved, Federal_Guideline
M1, 0.1, 0.4
M1, 0.2, 0.4
M1, 0.5, 0.4
M2, 0.6, 0.4
M2, 0.4, 0.4
M2, 0.3, 0.4
I ...
3
votes
1answer
36 views
graphical theme settings: a nested list structure with easy access to all levels?
[I'm reinventing the wheel (*), and the question of its shape springs to mind.]
For a graphical display of a table, I want to propose a theme that provides easy access to all aesthetic customisations ...
3
votes
3answers
35 views
Aggregating by unique identifier and concatenating related values into a string
I have a need that I imagine could be satisfied by aggregate or reshape, but I can't quite figure out.
I have a list of names (brand), and accompanying ID number (id). This data is in long form, so ...
2
votes
1answer
42 views
rapply over a nested list in R
I'm having trouble to rapply over a nested list. Here's the structure of a sample of one element of the list :
$ F01 :List of 7
..$ 0:'data.frame': 16 obs. of 3 variables:
.. ..$ lengths: ...
3
votes
1answer
34 views
error-safe templating with brew / whisker
An external program needs an input file with some control parameters, and I wish to generate those automatically using R. Usually, I simply use paste("parameter1: ", param1, ...) to create the long ...
0
votes
0answers
6 views
R: obtaining marginal effects from survreg model
Could someone quickly explain how to obtain marginal effects from a weibull duration model of the form:
survreg(Surv(duration, censored) ~ x1 + x2 + x3 + x4, dist="weibull")
I have tried obtaining ...
1
vote
1answer
45 views
Eliminate duplicates in a list of a list
I have a list containing other lists and in each of those lists I would like to eliminates duplicates according to the first column. I managed to do that just for one list of the list
...
-1
votes
1answer
35 views
Replacing text in data frame in r
I want to replace text in one column with numbers
for example,
>df = chickwts
>df
weight feed
1 179 horsebean
2 160 horsebean
3 136 horsebean
4 227 horsebean
5 217 ...
2
votes
1answer
48 views
Fill up white space in R Plots
How does one get rid of white space when plotting in R as in the example below?
I would like to do this because when I want to multiple plots on a page it looks terrible.
I'm using the par ...
2
votes
2answers
21 views
Nested List to Single Table (Merge By Column Name?)
I have a nested list that looks like this:
dput(head(tempList))
structure(list(Species = c("RandArcBo1", "RandArcBo1", "RandArcBo1",
"RandArcBo1", "RandArcBo1", "RandArcBo1", "RandArcBo1", ...
1
vote
1answer
40 views
running R in emacs on LSF
I would like to run R in emacs using ESS. My R session runs interactively but is submitted to a different host using LSF. Is there a way to make this work? That is, R is not being run locally. ...
-1
votes
0answers
30 views
How to control the numbers of breaks when using “scale_continuous”? When use “facet” I hope every group has the same number of breaks on x-axis
How to control the numbers of breaks when using "scale_continuous"? When use "facet" I hope every group has the same number of breaks on x-axis.
The basic script is
m + ...
0
votes
0answers
23 views
How do you explicitly delete a SQLite database created with the sqldf library in an R script
I have created an R function to perform subsetting, summaries, densities, and plotting. I was initially assigning out the subsets to my workspace in RStudio but I started running into memory ...
1
vote
1answer
32 views
Import Infopath .XML forms into data frame in R
What's the best way to import Infopath .XML forms in R, and transform into a dataframe? If I open the Infopath .XML file in Excel, the rows and columns of the data frame appear correctly.
Here's ...
-1
votes
0answers
29 views
Maximum Likelihood Estimation for truncated distributions
for my master's thesis I have to work with truncated distributions. For the first try, I have chosen a normal distribution, truncated at 0 and 1.
So I wrote a function to maximize the log - ...
3
votes
1answer
40 views
Using R to interpret a symbolic formula for outside use
In R, the formula object is symbolic and it seems rather hard to parse. However, I need to parse such a formula into an explicit set of labels for use outside of R.
(1)
Letting f represent the ...
5
votes
2answers
55 views
Using R's data.table package, can I use variables created in 'j' in the same 'j' argument?
In the 'j' argument in data.table, is there syntax allowing me to reference previously created variables while in the same 'j' statement? I'm thinking of something like Lisp's let* construct.
...
2
votes
2answers
26 views
Sum vector with corresponding name
Let say you have a list of vector:
L = list()
L[[1]]= c(2,34,6,7,3)
L[[2]]= c(3,4,6,8,1)
names(L[[1]])=c("A","B","C","D","E")
names(L[[2]])=c("A","R","C","D","F")
L
## [[1]]
## A B C D E
## 2 ...
1
vote
0answers
33 views
ARIMA Modelling in R vs MATLAB
I tried to fit a time series data for MATLAB and in R.
Here's the code for both
MATLAB
model = arima(3,0,2)
fit = estimate(model,Price_DLR)
R
arima(Price_DLR, order = c(3,0,2))
I am getting ...
0
votes
1answer
38 views
How can I compare one level of a factor with all remaining levels in R
I have a dataframe similar to built-in InsectSprays (with factor and numeric data), but it contains 10+ numeric and 20+ factor vectors with few NAs. When I boxplot(numeric ~ factor), I notice that ...
0
votes
1answer
17 views
Conditional Propagation of Values
I have a matrix
mat<-matrix(c(272,237,266,272,225,265,117,223,262,241,210,216,252,203,170),nrow=5,ncol=3,byrow=T)
[,1] [,2] [,3]
[1,] 272 237 266
[2,] 272 225 265
[3,] 117 223 262
...
3
votes
1answer
43 views
Adding page numbers in pdf file generated by R
I am trying to add page numbers to a pdf file generated using plot in R and saved in a pdf format.
I am using d_pply to the data.frame within which I am using the plot command.
I thought d_pply ...
0
votes
2answers
40 views
Combining items from a data.frame list into a single data.table
I have a named data.frame that contains 10 items with three columns each. Each item in the data.frame looks like this:
$RandArcBo1
$RandArcBo1$x
[1] -97.5 -174.5 156.5 -172.5 111.5 -132.5 142.5 ...
1
vote
0answers
28 views
Gini index and Lorenz curve in R [duplicate]
I would like know how I can program the Gini Index and Lorenz Curve in the program R x64 3.0.0.
I have loaded:
data(precip)
precip
gini <- function(precip,unbiased=TRUE, na.rm=FALSE){
...
2
votes
1answer
28 views
format.POSIXct to as.POSIXct conversion issue [duplicate]
I have a POSIXct variable with the value "2012-04-15 16:49:36 CEST". The format function returns the year, week of the year and the weekday in decimal numbers, for this example 2012 15 0. The ...
1
vote
3answers
28 views
Finding proportions based on data.frame subsets
I have a set of counts from data with three dimensions:
df <- data.frame(type = c("A", "B", "B", "A", "A", "C", "B", "C"), group = c("Tp", "Tp", "Tp", "Tp", "Fc", "Fc", "Fc", "Fc"), size = ...
1
vote
1answer
31 views
Obtaining unstandardized factor scores from factor analysis
I'm conducting a factor analysis of several variables in R using factanal(). I want to determine each case's factor score, but I want the factor scores to be unstandardized and on the original metric ...
3
votes
1answer
39 views
How can I reorder the x axis in a plot in R?
Using plot in R causes the factors on the x-axis to be alphabetically ordered.
How can I specify the order of the factors on the x-axis?
Example:
y <- 1:9
x <- c(rep("B", 3), rep("A", 3), ...
3
votes
0answers
54 views
Fastest way to get version controlled code back into RStudio
I'm using git as a version control system in RStudio. I have several different versions of an R script saved in git. Lets say, I've deleted a block of code but I've now decided I want to re-insert the ...




