0
votes
1answer
58 views

a loop to make a medication adherence variable in R

I am working with prescription data and want to generate a summary variable which measures an individuals adherence to a drug over a given period. This variable is called the Proportion Days covered ...
-1
votes
1answer
72 views

While and loop in R [closed]

I am attempting to sample each number of markers( i.e=2), only maf =1 considering maf=0 for count. I tried this script but is not worked: #Example file, choose each 2 markers, with only maf=1 ...
0
votes
1answer
50 views

How to do for loops without overwriting?

I have a large data.frame called rain with information of many species mesured in different plots at different times (census), from which I want to extract the information. This data frame have many ...
0
votes
3answers
27 views

Creating empty matrix and filling in date matched values in R

I'm quite new to R and apologise in advance for my post not being in the usual format (I tried using dput() but got a weird output and have no idea how to upload datasets I'm really sorry). I have a ...
-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
2answers
23 views

Calculating number of values less than x by row of data frame

I have searched the forums and the web high and low for the last two days, and broken down my script to try and find the issue, but for some reason, I can't get this to work properly beyond the first ...
2
votes
2answers
65 views

How to calculate Euclidean distance (and save only summaries) for large data frames

I've written a short 'for' loop to find the minimum euclidean distance between each row in a dataframe and all the other rows (and to record which row is closest). In theory this avoids the errors ...
2
votes
2answers
45 views

Perform numerical operation in subset of IDs and return the results in the same data frame

I have a large dataset consisting of longitudinal measurements in various subjects (IDs) and some variables lets say: test.df <- data.frame(id=c(rep("A", 50),rep("B", 50)), x1=rnorm(100), ...
0
votes
1answer
39 views

Looping a function for each row in csv

I have a .csv file containing 22.388 rows with comma seperated numbers. I want to find all possible combinations of pairs of the numbers for each row seperately and list them pair for pair, so that ...
-1
votes
0answers
25 views

Converting Numeric variables into Bins to calculate Entrophy/Chisquare using CUT function [closed]

Following is the code i use - to convert Numeric variables into Bins and then calculating Entropy/Chisquare using CUT function Code: for(i in 3:ncol(Data2)) { if(is.numeric(Data2[,i])) ...
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 ...
1
vote
2answers
32 views

R How to generate unique list outputs using if statements in a for loop?

I have a filelist where files going into the for loop have different numbers of columns. I want to generate a subset of each input file where the time variable (column) is >800 and where the number ...
0
votes
1answer
18 views

getting the max() of a data frame under certain conditions

I have a rather large dataframe with 13 variables. Here is the first line just to give an idea: prov_code nuts1 nuts1name nuts2 nuts2name prov_geoorder prov_name NUTS_ID EDAD year ORDER graphs value ...
1
vote
1answer
33 views

Different titles for plots using loop in R

I am trying to make plots in a loop. But how do I put different titles on each plot? In this example, I want different names for my 8 density plots, such as beta[Treatment], beta[Time Dummy], etc. ...
0
votes
1answer
33 views

Using merge.zoo to dynamically create variables in R

I'm trying to create a function that automatically creates polynomials of a zoo object. Coming from Python, the typical way to it is to create a list outside a for loop, and then append the list ...
0
votes
2answers
78 views

Replacing all NA numbers in a list with the list's mean

I'm totally new to R, and I've been trying to replace the NA values with the mean value for each column. I've tried a lot of options. but none seems to work. I've tried this one and many similar ones ...
4
votes
3answers
83 views

Using R as a game simulator

I am trying to simulate a simple game where you spin a spinner, labeled 1-5, and then progress on until you pass the finish line (spot 50). I am a bit new to R and have been working on this for a ...
0
votes
1answer
49 views

In R, how can I loop over data frames?

I'm working with several data frames with names following this structure: data.bzk.18 data.bzk.19 data.bzk.20 data.bzk.21 I'd like to use plyr to summarize data and basically run the following on ...
1
vote
2answers
88 views

for loop through data frame and looping with unique values

I'm trying to work on code to build a function for three stage cluster sampling, however, I am just working with dummy data right now so I can understand what is going into my function. I am working ...
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 ...
0
votes
2answers
89 views

Error in lm.fit(x, y, offset = offset, singular.ok = singular.ok, …) : 0 (non-NA) cases

I encounter a problem when I use lm together with loop. I want to fit regression lines with every four values of xx and yy. Here is my code, >xx<-c(0 , 55, 146, 457, 643, 825,1008) ...
3
votes
4answers
70 views

R remove objects from a list with if else statement

I have a list of data frames, and would like to remove those with less than 2 rows off from mylist: a<-data.frame(x=c(1:4),y=c("m", "n", "o", "p")) b<-data.frame(x=c(2:6),y=c("q", "w", "e", ...
-1
votes
3answers
70 views

Create dataframes AND named columns within a for loop using variables

I'm trying to create a bunch of dataframes, & modify the variables within those dataframes, in a loop. The code below almost works, except that it creates a whole bunch of objects of the form ...
0
votes
1answer
36 views

Naming a data.frame column from within function that creates it

The code below creates a dataframe with my lagged data but to get the names fixed up I currently have to explicitly create the names with a second 'for' command. I'd like to move the column name ...
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 ...
0
votes
3answers
37 views

Better way to remove redundancy between two columns of a data frame in r

If I have a data frame which contains one column, name, and another, site, and I want to determine the number of unique name to site relationships. I've written the following script. It works but ...
1
vote
1answer
49 views

How to add in Forlus R

I have a quick question. I want to take the average of each 12 elements in a series. I have the folowing code: PPrateav = NULL for (i in 80) { PPrateav[i] = sum(PPrate[1+(i-1)*12:(i*12)])/12 } ...
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 ...
0
votes
1answer
30 views

Creating string vector from loop

I am trying to create a label to the combn command so that I know exactly which pairs where compared. Here's an example: Let a be my vector of interest, a<-seq(1,10,1) c<-combn(a,2) So I want ...
0
votes
3answers
62 views

R populate list by it's values

Say I have a list: > fs [[1]] NULL [[2]] NULL [[3]] NULL [[4]] [1] 61.90298 58.29699 54.90104 51.70293 48.69110 I want to "reverse fill" the rest of the list by using it's values. Example: ...
0
votes
1answer
34 views

R: extract parts of matrices in loops - loop only run once

I am not an advanced user, but I have been trying to solve this problem for many hours now and I do not know how else to proceed. SETTING: I have a 2X10000 matrix, which is constituted of 10000 ...
-2
votes
2answers
48 views

R while loop and number of times

got a while loop going, and that's working fine. However I also need to add another condition. I need the loop to keep going until it satisfies the while loop, but then I also need to add that this ...
1
vote
2answers
61 views

Can someone check my code to see why this message pops up “Error: could not find function ”N1“”

I know its a simple fix but can someone please take a look at it: a12= 0 a21= 0 K1= 1000 K2= 600 r1= 0.2 r2= 0.1 N1= ((K1 - a12*K2)/(1 - a12*a21)) N2= ((K2 - a21*K1)/(1 - a21*a12)) for(t in 1:80){ ...
1
vote
2answers
60 views

R for-loop and lists with non-numeric argument to binary operator error

Thank you in advance for you time in helping me with my problem. I am trying to write a program to calculate the standard difference of several different groups and the last step has me a little ...
4
votes
1answer
73 views

Use a for loop to create several bubble plots with different legend scales in R

I have been trying to make several bubble plots showing the frequency of observations (as a percentage) of several individuals in different sites. Some individuals were found in the same site, but not ...
0
votes
1answer
57 views

How to specify data interval in a R for loop

In Matlab we can specify the interval between data as follows for i = 1:3:n ... end Given that the for loop structure in R is as follows: for (i in 1:n) { ... } can we ...
1
vote
2answers
77 views

Store results of a for-loop in an object or matrix

i've following problem: I use the for-loop within R to get specific data from a matrix. my code is as follows. for(i in 1:100){ T <- as.Date(as.mondate (STARTLISTING)+i) DELIST <- ...
0
votes
1answer
50 views

Performing variable arithmetic operations within a for-loop in R

I have the following sample data BR WT SW PO 1 4.0 7 2.0 1.0 2 12.0 5 4.0 2.0 3 8.0 7 5.0 8.6 4 9.0 3 5.6 9.0 5 1.0 10 6.0 5.0 6 6.0 2 7.5 12.0 7 7.0 3 10.0 15.0 8 4.5 ...
2
votes
3answers
99 views

Why is this simple loop in R so slow?

I'm a beginner with R and I have written this simple loop: for(i in 1:12000){ if(v$piano.tariff[i] == 2) {v$piano.tariff[i] = 0} else {v$piano.tariff[i] = 1} } Where v is a data frame and ...
-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
1answer
91 views

R: Replicating a loop or function multiple times and adding results to data frame for each time

I've written an R loop and turned it into a function that takes in a dataframe, The original code and data frame are below. The goal is to repeat out this function or loop 1000 times and end up with a ...
6
votes
2answers
61 views

Count the number of instances where a variable or a combination of variables are TRUE

I'm an enthusiastic R newbie that needs some help! :) I have a data frame that looks like this: id<-c(100,200,300,400) a<-c(1,1,0,1) b<-c(1,0,1,0) c<-c(0,0,1,1) ...
0
votes
1answer
57 views

Using ddply instead of for

I'm quite new to plyr package (and R in general) I have following code # I have some dataframe df # columns: # -somefactor: factor # -value: numeric f<-levels(df$somefactor) ...
1
vote
2answers
42 views

for loop in R variable embedded in string name

I am new to R and am having trouble creating a for loop in which I can use the variable in a string name. For example: lm1 <- lm(a~b+c) lm2 <- lm(a~b+d) lm3 <- lm(a~b+e) for(i in 1:3){ ...
3
votes
1answer
49 views

How to create a binary variable from a loop and an if statement

Assuming I have a vector x containing 20 values between 0 and 2. x = runif(20, 0, 2) Now, I want to create another vector y (a binary variable) containing only 0 and 1 on the following condition: y ...
-1
votes
2answers
60 views

Edit: R 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 ...
1
vote
1answer
68 views

R: ggplot does not work if it is inside a for loop although it works outside of it [duplicate]

I'm using a simple ggplot function which works fine outside a loop but not inside even if the iterative value does not interfere with the ggplot function. Why is it so ? Here is my code x=1:7 y=1:7 ...
2
votes
2answers
57 views

Subsetting a dataframe based on surrounding row values

I am analyzing data collected on bird behavior and want to calculate the amount of time a seabird remains on the surface of the water while loafing, otherwise considered resting, between foraging ...
3
votes
3answers
71 views

Calculate number of changes of a variable per individual in a data frame

Might be a very simple question to ask but I struggle to solve this problem in r. I have a dataset containing four variables: ID (for identifying the participants ), Type (with 1 value this time ), ...
0
votes
1answer
59 views

iteration in for loops

Here is my current code dat= data.frame(a=1:10,b=1:10,c=1:10,d=1:10,e=1:10) for (i in 1:ncol(dat)) { print(interaction(##...what to write here?*...##))} My for loop should do the following ...

1 2 3 4 5 7