0
votes
2answers
27 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
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
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 ...
0
votes
0answers
32 views

R - loop adding points to graph

I have a problem with loop in R. I have written a simple program to load spectra, rewrite all data into a separate file, plot them and to mark position of a peaks. Unfortunately when I run the last ...
1
vote
1answer
49 views

Efficient implementation of summed area table/integral image in R

I am trying to construct a summed area table or integral image given an image matrix. For those of you who dont know what it is, from wikipedia: A summed area table (also known as an integral ...
-1
votes
0answers
54 views

Require help in improving efficiency [closed]

I've got an r-script that does this: mat.default = matrix(c(0), 15, 24, byrow =T) mat.default = array(mat.default, c(15,24,100) # 100 of such 15x24 matrix ## then mat default is filled with relevant ...
4
votes
4answers
74 views

Collecting an unknown number of results in a loop

What is the idiomatic way to collect results in a loop in R if the number of final results is not known beforehand? Here's a toy example: results = vector('integer') i=1L while (i < ...
-1
votes
3answers
93 views

Speed up R loop [duplicate]

Speeding up loops in R can easily be done using a function from the apply family. How can I use an apply function in the code below to speed it up? Note that within the loop, at each iteration, one ...
-3
votes
0answers
22 views

Fisher test for enrichment score [closed]

I have question about a suitable R package for enrichment score test or the test to find significant Gene ontology (GO) for in a set of gene. I trying with GOstat package, but I could not find any ...
1
vote
2answers
39 views

For loop on dates in R

R-users, I have this dataframe: head(M2006) X.ID_punto MM.GG.AA Rad_SWD 2945377 1 0001-01-06 19.918 2945378 2 0001-01-06 19.911 2945379 1 0001-02-06 ...
0
votes
1answer
49 views

“Vectorizing” this for-loop in R? (suppressing interaction main effects in lm)

When interactions are specified in lm, R includes main effects by default, with no option to suppress them. This is usually appropriate and convenient, but there are certain instances (within ...
-1
votes
3answers
79 views

For loop in R starting from other value [closed]

This has been bothering me for some time now. Imagine you have to/want to use a loop. If you write a loop, but you want to start from the number 2, you'd use the following: for (i in ...
1
vote
2answers
87 views

R loop: name objectives by variable

I need to read daily netcdf files every month and give each a name ended with the date library(raster) year<-2004 startmonth<-1 for(monthd in 31){ days<-formatC(monthd, width=2, ...
0
votes
2answers
51 views

R - How to sum objects in a column between an interval defined by conditions on another column

This comes as an application to this question:Sum object in a column between an interval defined by another column What I would like to know is how to adjust the answer if I want to sum the values in ...
0
votes
1answer
36 views

how to refer to multiple matrices in a loop

I have 12 matrices pV1...pV12. I need to change their colnames according to names of TF2Gene which is a list. So I have to repeat this process 12 times. How do I refer these matrices in a loop so that ...
0
votes
1answer
38 views

Use of ddply instead of a loop - subtracting for particular categories

I have a dataset with 2 numeric columns. Example dataset: X = c(-1:-20) Y=c(11:30) df=as.data.frame(cbind(X,Y)) My dataset looks like: X Y 1 -1 11 2 -2 12 3 -3 13 4 -4 14 5 -5 15 ...
1
vote
2answers
53 views

using apply with assign in R

Consider the following example: Vars <- c("car","bike","lorry") Dat <- c(10,20,22) for (i in 1:length(Vars)){ assign(Vars[i],Dat[i]) } Here, I would like to generate three variables in the ...
0
votes
1answer
40 views

getting “NaN” results from for loop

First - so sorry for such a long post. I'm trying to be specific! Thanks for reading it :) I have two vectors as follows: popd = vector(mode='numeric', 100) popr = vector(mode='numeric', 100) These ...
-3
votes
1answer
51 views

Improve R script efficency

I am trying to match two very big data (nsar & crsp) sets. My code works quite well but needs a lot of time. My procedure works the following way: Try match via ticker (thereby controlling that ...
0
votes
1answer
28 views

Avoid repeating statements when importing data

Iv'e written the following code to import data into R: ## specify where all the data files are stored DataFolder <- "DataFolder" ## obtain the name of each file in DataFolder files <- ...
-1
votes
2answers
52 views

R - Loop through multiple dataframes in a list

UPDATE: results from dput( ldf[[1]] ) no prob. Here it is: "A 04/18/2013 06:34:58 3D9.1C2D9F22C2", "A 04/18/2013 06:34:58 3D9.1C2D9F22C2", "A 04/18/2013 06:38:24 3D9.1C2DDAE977", "A ...
-1
votes
0answers
66 views

R looping anova and outputs to png file

Hi I am trying so hard to do something which just seems impossible. I have about 10 hours experience using R. I have a dataset that has my categorical data in the first column and following that ...
0
votes
1answer
35 views

R what's the result of iteration throught a dataframe?

I have trouble to iterate throught a data.Frame. # a is a dataframe, with names 'f','d','sess', ... for (x in a) # find all events BEFORE the event x # ('d' is the beginning of the event in ms, ...
1
vote
1answer
56 views

Strange lapply problematic I can't understand

I have a list "hhvrs" of length 2 with names and values. The names of these 2 elements of list are years "1920" and "1929". $`1920` Nykvarn - 147 - 211920 Nykvarn - 262 - 211920 ... ...
1
vote
1answer
40 views

Indexing Date via Loop

I am attempting to determine where dates are located in a matrix with the following code: #portret is a list of daily returns for three different stocks from 1980-01-01 to 2010-12 #13.These dates are ...
1
vote
2answers
49 views

R - loop - save the whole loop output

My data file (obs) looks approximately like this (only the first six lines for illustration) date time station variable 1 variable 2 22/04/2013 05 10394 4 3 ...
1
vote
2answers
61 views

Loop for matrices multiplication

I have this matrix: V1 V2 V3 V4 V5 V6 V7 V8 [1,] 0.8399983 0.01558029 0.00000000 0.0000000 0.00000000 0.00000000 0.00000000 0 [2,] ...
3
votes
3answers
65 views

Subsetting data in a loop and write results to a list

I have dataframe containing five variables. Two of them are metric measurements and three of them contain groups stored as factors. I try to subset this dataframe three times in a loop by the ...
2
votes
1answer
49 views

Knitr: survplots in a loop are not produced when following another survplot

Below is a minimal example: \documentclass{article} \begin{document} <<data, results='hide', echo=FALSE, include=FALSE>>= library(rms) fake.survival.data <- Surv(1:30, rep(1, 30)) ...
0
votes
1answer
67 views

Complex R - function/loop

Here is a challenging yet quiet interesting conflict I have... I wish I could really do this, hope someone could help me out here THIS is "R" Here is a code that I am running to get R-squared for X1 ...
1
vote
1answer
33 views

Loop boolean: Unequal to NA

I want to count the values in an array which are not "NA". E.g. I have array<-c(NA,NA,NA,NA,NA,4,-5.5463) I thought this would work, but it does not: counter<-0 for(i in 1:length(array)){ ...
1
vote
2answers
59 views

Using tryCatch() to catch a bootstrap loop

I have insufficient knolwedge on the use of tryCatch() but have found it hard to find a good solution in the ongoing discussions. I have a self-programmed function which returns an object. It is ...
1
vote
2answers
63 views

How to build a data frame from several xls files?

I am trying to build a data frame from several xls tables I downloaded: states <- c("A","B","C","D") for(i in states){ ...
1
vote
0answers
161 views

How to avoid using loops in this algorithm?

I try to avoid the loops in R, but it seems that I have to use it some times: X=rnorm(100) Y=matrix(rnorm(200*100),ncol=100) Beta=function(y,period){ # y is a vector, maybe one row of Y ...
0
votes
1answer
55 views

R sqlSave String Variables Loop Issues

I'm just now jumping back in the land of R after a few years away and am running into a problem passing variables through a loop with sqlSave. I've got RODBC up and running smoothly with MySQL on a ...
0
votes
1answer
73 views

make for loop faster in R without parallalizing

I have the following very simple loop operation where I need to loop from 1 to 50,000. Although the loop is very simple, itàs very slow in R, so I'm wondering if there is any operation can do to make ...
-2
votes
1answer
66 views

In R, How can I do this faster and more efficiently?

make item random data test <- matrix(runif(100, 0, 1), nrow = 20) nr <- nrow(test) mat = matrix(sapply(test, rbinom, n = 1, size = 1), nrow = nr) make name random data testvec <- cbind( ...
0
votes
5answers
39 views

Applying a function to more than one data frame (R)

I have numerous data frames for which I would like to apply the same function. Context: I have data frames which record time windows for subjects, with an indicator which is 0/1, saying if an even ...
1
vote
1answer
43 views

R loop for barplots how to pass on data?

I need to produce and save to jpeg multiple simple barplots, with four bars representing four data points. I've succeeded in getting the code to loop, producing the correct number of jpeg file ...
0
votes
1answer
41 views

Simulation Study Calling Function

I spend multiple hours of thinking about the following problem. I am running a simulation study and I want to define functions outside the simulation study in order to be able to call these functions ...
0
votes
1answer
74 views

Novice needs to loop lm in R

I'm a PhD student of genetics and I am trying do association analysis of some genetic data using linear regression. In the table below I'm regressing each 'trait' against each 'SNP' There is also a ...
0
votes
1answer
41 views

intersecting across 10 large data sets and merging automatically

I have 10 data.frames with 2 columns with names s and p. s is for sequence and p is for p-values. I want to find the sequences that intersect across all data.frames, so I did this: # 10 data.frames ...
1
vote
2answers
58 views

How do I print a variable inside a for loop to the console in real time, as the loop is running, in R?

I have a loop that takes a long time for each iteration, and I would like to see the progress of it in real time. How do I print a variable inside a for loop to the console in real time, as the loop ...
0
votes
2answers
74 views

learning to use loops by calculating cumulative probability from probability of each trial in R

I've struggled long enough on my own to find an answer. I promise I'll try to learn from the solutions. For the sake of learning, I would like to understand how to do it with explicit loops, but if ...
0
votes
2answers
18 views

R fill datas.frame with random values without a loop

I need to know something. I want to fill a data.frame D with values. This should be done with dbeta so Im doing something like this d[1:10,1:10] <- 0.01 + (1-0.01)*rbeta(1,shape1=1,shape2=2) ...
0
votes
1answer
55 views

Looping Regression extraction for each regression

I can see this has been almost done before, but i am new to R, and can't figure it out. Pretty much, i have a regression loop (please don't criticise for data-mining) and i need to report some things ...
-1
votes
1answer
74 views

Loop in R for getting the sum of combinations starting from zero [closed]

I have the following equation and I have to write it in R. The main challenge that I am facing with this coding is that for each i and for each k, I need a sum of combinations (binomial terms in the ...
0
votes
2answers
93 views

What is wrong with this looping?

I can't inderstand what is wrong with this R code, I have several rows and col with a measuament or NA and I basically want to get the min and max value in each line looking amongs the several cols: ...
1
vote
1answer
62 views

Condition for function and loop

I have a data frame simplified as follow: head(dendro) X DateTime ID diameter dendro ring DOY month mday year Rain_mm_Tot Through_Tot temp 1 1 2012-06-21 13:45:00 r1_1 5482 ...
30
votes
6answers
9k views

Speed up the loop operation in R

i have a big performance problem in R. I wrote a function that iterates over an data.frame object. It simply adds a new col to a data.frame and accumulate sth. (simple operation). The data.frame has ...

1 2 3 4 5 9