The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
28 views

Mean of variable by two factors

I have the following data: a <- c(1,1,1,1,2,2,2,2) b <- c(2,4,6,8,2,3,4,1) c <- factor(c("A","B","A","B","A","B","A","B")) df <- data.frame( sp=a, length=b, method=c) I can ...
0
votes
2answers
32 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 ...
0
votes
1answer
111 views

Problems with grouping factor, data frame, and tapply

I am very new to R and stats in general and am having trouble getting tapply() to work. I have a data frame with 15 columns and thousands of rows. I made a bunch of logical vectors using something ...
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
1answer
70 views

R: relative frequency in r by factor

I would like to get a table of top 10 absolute and relative frequencies for a variable across other factor variable. I have a dataframe with 3 columns: 1 column is a factor variable, 2nd is other ...
3
votes
3answers
68 views

Apply the corr function to a matrix using levels of a factor?

I'm trying using the corr() function to calculate weighted ponderations. The way it works is the first argument should be a matrix with two columns corresponding to the two variables whose correlation ...
4
votes
4answers
124 views

multiple functions in a single tapply or aggregate statement

Is it possible to include two functions within a single tapply or aggregate statement? Below I use two tapply statements and two aggregate statements: one for mean and one for SD. I would prefer to ...
0
votes
1answer
76 views

Using tapply on two columns instead of one

I would like to calculate the gini coefficient of several plots with R unsing the gini() function from the package reldist. I have a data frame from which I need to use two columns as input to the ...
2
votes
1answer
48 views

R - “linearizing” the results of tapply

In a dataframe I have a vector with some values, and vectors of categories that each value belongs to. I want to apply a function to the values, that operates "by category", so I use tapply. For ...
1
vote
1answer
82 views

Use tapply function in dataframe in R

Here is my dataframe df: x y 1 1 1 2 1 2 3 2 3 And I get the result: 2 3 with the code: tapply(df$y, df$x, sum) But I expect to get 3 3 Is there something wrong ...
0
votes
0answers
68 views

counterpart of tapply in winbugs

I need to calculate the mean of each state. In R, I did this by using tapply(y,state,mean). Here is an example: state <- rbinom(10,4,0.6) y <- rnorm(10) tapply(y,x,mean) where y represent ...
2
votes
1answer
165 views

How to get na.rm into function for tapply?

I´d like to calculate mean and sd from a dataframe with one column for the parameter and one column for a group identifier. How can I calculate them when using tapply? I could use sd(v1, group, ...
0
votes
0answers
34 views

Matrix Calculation - the by() function

I am having trouble creating a function to calculate through specific cells of my matrix. I have made a cumbersome script that is working to give mg/g of a compound. However, I am trying to make a ...
7
votes
2answers
102 views

does the by( ) function make growing list

Does the by function make a list that grows one element at a time? I need to process a data frame with about 4M observations grouped by a factor column. The situation is similar to the example below: ...
0
votes
1answer
48 views

week day week-percent from time-series

I have some daily time-series data that i need to extract the 'week day percent' relative to the week mean. For example, if the first week has mean = 100 and the Sunday value for this week is 20, then ...
1
vote
1answer
77 views

tapply with an ordered factor

When a factor level is missing you can use table in the following way: marks <- c(1,5,3,4,5,6) table(ordered(marks,levels=1:6)) which will return a table with level "2" listed with zero ...
5
votes
4answers
101 views

How to assign a counter to a specific subset of a data.frame which is defined by a factor combination?

My question is: I have a data frame with some factor variables. I now want to assign a new vector to this data frame, which creates an index for each subset of those factor variables. data ...
1
vote
2answers
82 views

Vectorize glm and extract all information

I have a data set "keywords" with several groups. I want to apply glm to each group individually to create a list of glm fits with one fit for each group. I could do this with a for loop, but thats ...
2
votes
2answers
93 views

Performance of reshaping table

How can I go from a table like this: ID Day car_id value 1 1 1 0 1 1 2 4 1 2 1 1 1 3 2 0 2 1 3 0 2 2 3 2 2 3 3 ...
0
votes
1answer
164 views

Why does tapply take the subset as NA and not exclude them totally

I have a question. I want to make a barplot with the mean and errorbars, where it is grouped for two factors. To get the mean and the standard errors I used the function tapply. However for one of ...
2
votes
1answer
334 views

Standard errors of each observation among grouped data in data frame

I have a data frame where I'd like to calculate the standard error of observations grouped by factors in three columns. The standard deviation and standard error of the mean of the groups have been ...
0
votes
2answers
64 views

How do I convert table formats in R

Specifically, I used the following set up: newdata <- tapply(mydata(#), list(mydata(X), mydata(Y)), sum) I currently have a table that currently is listed as follows: X= State, Y= ...
0
votes
1answer
143 views

How to use tapply() within a for loop and print output in R?

I am using tapply() to apply a function to my data Myrepfun <- function(x,n){ nstudents <- replicate(1000,sum(sample(x, size=n,replace=TRUE))) quantile(nstudents,probs=0.95) } ...
1
vote
1answer
127 views

How do I combine tapply with a function that includes replicate, sample and sum?

I have a csv file which has details about students and their weights from different schools e.g. School School code Weight Age Height A 1 91 15 1.6 A 1 60 16 2.0 B 2 61 14 1.8 B ...
0
votes
2answers
119 views

How to split unequal columns in R

I have a data set that should contain 14 columns, but when I read it into R it presents as two columns, with the latter columns reading in as one, and are all separated by "." I read in using: ...
0
votes
3answers
177 views

Recovering tapply results into the original data-frame in R

I have a data frame with annual exports of firms to different countries in different years. My problem is i need to create a variable that says, for each year, how many firms there are in each ...
0
votes
3answers
171 views

tapply like issue, but require dataframe output - R

This is my first post, so hopefully I explain what I need to do properly. I am still quite new to R and I may have read posts that answer this, but I just can't for the life of me understand what they ...
1
vote
2answers
111 views

Changing arguments in tapply?

I have a several groups, let's say A,B,C and I want to cut another variable based on these groups, i.e. each group has specific breaks for the same variable. If I had to calculate the groups mean, ...
166
votes
4answers
39k views

R Grouping functions: sapply vs. lapply vs. apply. vs. tapply vs. by vs. aggregate vs

Whenever I want to do something "map"py in R, I usually try to use a function in the apply family. (Side question: I still haven't learned plyr or reshape -- would plyr or reshape replace all of these ...