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 ...
3
votes
3answers
49 views

Aggregate data frame by date and apply different functions to corresponding columns?

I have the following data frame "DF" which is part of a much larger one: X1 X2 X3 X4 X5 4468 2010-03-24 3 1.000000e+00 1 2 7662 2010-03-24 9 3.000000e+00 2 1 1272 ...
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 ...
0
votes
1answer
43 views

R summation of a serie with subscript

I thought it should be an easy one but I have been scratching my head and couldn't find the correct way. I would like to calculate a summation of series A: A<-*summation((i=2 to ...
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 ...
2
votes
1answer
35 views

R conditional sum in data frame depending on word in a column

I have a data frame containing words and numeric entries. I want to sum all the entries for which the row entry in the word now is identical. District name Population Child birth rate A ...
2
votes
3answers
57 views

Moving sum based on dates

I a large dataset that I would like to compute a moving annual sum of a column. It has to be an exact year, so I cannot use rollapply as its based on a specific amount of days and not the actual ...
0
votes
1answer
39 views

sum by group in a data.frame

I'm trying to get the sum of a numerical variable per a categorical variable (in a data frame). I've tried using tapply, but it's doesn't take a whole data.frame. Here is a working example with some ...
1
vote
3answers
66 views

R optimization with fixed sum of parameters

i want to optimize one function, with the sum of parameters set to 1 here there is the function varxyz<-function(param){ a<-param[1] b<-param[2] c<-param[3] ...
7
votes
2answers
87 views

Convert string to single digits and sum

I've tried for hours to find a solution to what I thought was an easy task but I failed. I have a string consisting of 3 different characters ('I','R' & 'O') with length from 1 to 6. E.g IRRROO ...
4
votes
2answers
64 views

ranking multiple data frames and summing across them in R

I have 10 data frames with 2 columns each, I'm calling the dataframes a, b, c, d, e, f, g, h, i and j. The first column in each data frame is called s for sequences and the second is p for p-values ...
0
votes
2answers
59 views

replace values with NA in R

I have a character vector that looks like: "Internet" "Internet" "-1" "-5" "Internet" "Internet" I want to replace all values that would be negative numeric values (-1, -5, etc) with ...
1
vote
2answers
67 views

Conditional sum based on indicator

I have a data frame like this: A B Ind 1 10 8 1 2 9 10 2 3 7 1 2 4 19 20 1 5 . . . How can I sum the columns based on the Ind value? If Ind==1, sum from column ...
-1
votes
1answer
79 views

Why is apply not much slower than %*% in R? [closed]

Here is example code with output: set.seed(234) a <- matrix(rnorm(100000), 10000,100) dim(a) fo1 <- function() apply(a, 1, sum) fo2 <- function() a %*% rep(1, 100) fo3 <- function() { ...
2
votes
3answers
55 views

In R, sum over all rows above a given row and restarting at new ID?

The following is what I have: ID Year Score 1 1999 10 1 2000 11 1 2001 14 1 2002 22 2 2000 19 2 2001 17 2 2002 22 3 1998 10 3 1999 12 The following is what I ...
1
vote
2answers
101 views

R: sum at different levels [duplicate]

I have a dataset X as: customer_id event_type tot_count 931 1 5 231 2 6 231 1 3 333 3 9 444 1 1 931 3 3 333 1 21 444 2 43 I need a sum at customer_id and event_type level. This is a 1 line code in ...
4
votes
4answers
73 views

sum within (date)

I'm trying to calculate the sum of values (in XYZmin) that occur on the same date. My data looks like this, bar <- structure(list(date = structure(c(15622, 15622, 15622, 15628, 15632, 15635, ...
4
votes
1answer
78 views

creating a sum matrix from counts

I have one matrix of mutation counts, say "counts". This matrix has column names V1, V2,...,Vi,...Vn where not every "i" is there. Thus it can jump, such as V1, V2, V5 say. Further, most of columns ...
6
votes
2answers
72 views

sum of two lists with lists in R

Is there an easy way to do a simple calculation in a list of lists? x <- list(a=list(1:4),b=list(1:6)) y <- list(a=list(1:4),b=list(1:6)) When I try: x+y I receive the error: Error in x + ...
9
votes
7answers
232 views

summing every n points in R

I have a vector and I need to sum every n numbers and return the results. This is the way I plan on doing it currently. Any better way to do this? v = 1:100 n = 10 sidx = seq.int(from=1, ...
1
vote
2answers
104 views

get sum of consecutive day values

I have large dataset as follows: Date rain code 2009-04-01 0.0 0 2009-04-02 0.0 0 2009-04-03 0.0 0 2009-04-04 0.7 1 2009-04-05 54.2 1 2009-04-06 0.0 0 2009-04-07 0.0 0 2009-04-08 ...
0
votes
1answer
60 views

3D matrix summation?

Is there any way to sum 3 dimensional matrix? For example if you have data m<-array(c(1:9,18:26,30:38),dim=c(3,3,3)) , , 1 [,1] [,2] [,3] [1,] 1 4 7 [2,] 2 5 8 [3,] 3 ...
7
votes
4answers
171 views

R programming i need help finding sum of a list with 2 columns

I need you help with this: I have a list: list(c(0,1), c(1,1), c(3,2)) how can i get the sum: (0-1)+(1-1)+(3-2)
1
vote
1answer
151 views

Dataframe, Sum, Mean Help: How to sum and mean matrix?

I need explanation for data frame, sum, and mean commands If the code below is operated, I can get list of data files Preplist. Yet, the commands I need explanations for does not work due to some ...
1
vote
1answer
66 views

R sum element by element resulting in vector

First of all sorry for this question. I suppose it's super basic but I can't find the right search terms. For a vector a lets say: a<-c(1,1,3,2,1) I want to get a vector b which results when ...
0
votes
2answers
93 views

Special use of colSums(), na.rm = TRUE only if 1 or fewer are missing

I need to sum some columns in a data.frame with a rule that says, a column is to be summed to NA if more than one observation is missing NA if only 1 or less missing it is to be summed regardless. ...
2
votes
5answers
140 views

How to get sum of each element in two matrices of R

I want to get sum of combination of each element of two matrices. For example, combination of [ 2, 4, 6] and [3, 6, 9] to be [5, 7, 12, 8, 10, 15, 11, 13, 18]. I have only idea to get that result ...
3
votes
3answers
102 views

summing the positive values of k variables in R

I want to first find a max of 0 or j where j is any variable and then sum these for k (k=1,2,...k) variables of a dataframe data. In stata, I did as follows: gen ...
1
vote
4answers
115 views

How to sum 5 minute intervals in R

I have a dataset with precipitation records for every minute, for 6 different stations. I'd like to have summations for every 5 minutes, for every station. These are the first 5 rows of my dataset ...
-4
votes
3answers
78 views

Including sums and vectors in an R function [closed]

I have two vectors a and b, both with 8 elements. I need to make a function which is sum[(a_i+b_i)^2] i.e I need to add the respective components, then square them, then add the squares. I am able ...
2
votes
1answer
122 views

Cumulative sum of a georeferenced variable in R

I have a number of fishing boat tracks, and I'm trying to detect a certain pattern in their movement using R. In doing so I have reached a point where I have discarded all points of the track where ...
1
vote
1answer
114 views

Combine items with same name into data frame

if I have a table that looks like this (read in with read.table): http://i.stack.imgur.com/gaef6.png (The 0s are placeholders so I have a consistent number of rows) Is there a way that I can add ...
0
votes
1answer
52 views

Sum of times object

I just was faced with the problem, that I want to add up times in a time object, but the standard stuff (colSums, sum, rowSums) isn't working. So, I have time<-c("00:00:01", "01:02:00", ...
2
votes
2answers
315 views

Fastest way to take the weighted sum of the columns of a matrix in R

I need the weighted sum of each column of a matrix. data <- matrix(1:2e7,1e7,2) # warning large number, will eat up >100 megs of memory weights <- 1:1e7/1e5 ...
1
vote
3answers
83 views

Sum columns with a column as a chr type

I have something like this: Date Point1 Point2 Point3 01-03-2000 23 57 98 02-03-2000 67 36 77 03-03-2000 67 25 47 ... I wanna get the sum of each column ...
0
votes
1answer
92 views

Add colum that sums up values until this row

Assume I have a dataframe df with one column namely time. Now, I'd like to add a new column to the dataframe accumulated as seen below, that sums up the values from df.time for each row. time ...
2
votes
2answers
464 views

Using `:=` in data.table to sum the values of two columns in R, ignoring NAs

I have what I think is a very simple question related to the use of data.table and the := function. I don't think I quite understand the behaviour of := and often I run into similar problems. Here is ...
0
votes
2answers
188 views

R sum over infinite series loop?

I have this: time=1:200 m=1:1000 sum[i]= sum(1/(1+2*m)^2)*exp( (-kappa*(1+2*m)^2 * pi^2 * time[i])/(z1^2)) I need to find the sum of the expression above for m=1:1000 and time=1:200 I have tried ...
0
votes
4answers
786 views

R - min, max and mean of off-diagonal elements in a matrix

I have like a matrix in R and I want to get: Max off - diagonal elements Min off – diagonal elements Mean off –diagonal elements With diagonal I used max(diag(A)) , min(diag(A)) , mean(diag(A)) and ...
3
votes
3answers
172 views

Pulling information from the first approximate match of a text string in R (and summing the total number of matches)

I'm having trouble summing approximate matches of text strings, as well as pulling information from the string that was matched first in time. I have data that look like this: text<-c("THEN it ...
3
votes
2answers
119 views

R apply statement does not work with a matrix

I'd like to know the reason why the following does not work on the matrix structure I have posted here (i've used the dput command). When I try running: apply(mymatrix, 2, sum) I get: Error in ...
1
vote
1answer
56 views

R efficiently add up tables in different order

At some point in my code, I get a list of tables that looks much like this: [[1]] cluster_size start end number p_value 13 2 12 13 131 4.209645e-233 12 1 ...
1
vote
0answers
131 views

How does R do exact wilcox rank sum tests?

I read the documentation in R for wilcox.test() and want to determine: How R computes wilcox.test() The docs say that when the number of samples is small, it does the test exactly (instead of using ...
0
votes
1answer
574 views

Sum of vector elements

Is it possible to avoid using do and while loops to calculate the sum of the elements of a vector until the appearance of the last positive element or the last negative element.
3
votes
2answers
760 views

Sum by distinct column value in R

I have a very large dataframe in R and would like to sum two columns for every distinct value in other columns, for example say we had data of a dataframe of transactions in various shops over a day ...
-2
votes
1answer
236 views

R sum in a for loop

I will try to put it in this way: I'm making a sum : tot <- fac$a[,1]+fac$b[,1] Where a and b are factors and 1 the first column. And until here it's fine. Now I would like to use a for loop ...
-3
votes
2answers
533 views

R summing factors

I split some data according to factors like: a <- factor(data$fact) b <- split(data,a) Now I would like to add some of the factor together e.g. tot <- b$A+b$B but I'm getting the ...
1
vote
2answers
969 views

How to use the sum function in a for loop in R?

We want to calculate the value of an integral in linear plot. For a better understanding look at the photo. Let's say the overall area is 1. We want to find what the value in a certain part is. For ...
1
vote
2answers
105 views

randomly sum values from rows and assign them to 2 columns in R

I have a data.frame with 8 columns. One is for the list of subjects (one row per subject) and the other 7 rows are a score of either 1 or 0. This is what the data looks like: >head(splitkscores) ...
1
vote
2answers
456 views

Conditional Sum in R

I have a data frame that is 200 rows by 6 columns. I am interested in computing the total times that a value in Col A is less than a specific number. The number can be hard coded. I do not know where ...

1 2