The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

How to combine rows together when a feature is the same in R

I have following data >Data <- data.frame( X = c(22,22,22,22,22,33,33,33,33), Y = c(123,234,567,678,433,555,664,77,88), Z = c(2,2,2,1,2,2,1,1,1) ) >Data # X Y Z # 22 123 ...
4
votes
4answers
67 views

How can I rbind vectors matching their column names?

rbind does not check for column names when binding together vectors: l = list(row1 = c(10, 20), row2 = c(20, 10)) names(l$row1) = c("A", "B") names(l$row2) = c("B", "A") l $row1 A B 10 20 $row2 ...
0
votes
1answer
46 views

Creating a function to split data frames multiple times then recombine

I'm working on a large dataset in R with 3 factors: FY (6 levels), Region (10 levels), and Service (24 levels). I need to sum my numeric vector, SumOfUnits, at all three levels, and the only way I ...
0
votes
2answers
42 views

lapply and rbind not properly appending the results

SimNo <- 10 for (i in 1:SimNo){ z1<-rnorm(1000,0,1) z2<-rnorm(1000,0,1) z3<-rnorm(1000,0,1) z4<-rnorm(1000,0,1) z5<-rnorm(1000,0,1) z6<-rnorm(1000,0,1) ...
2
votes
2answers
30 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", ...
2
votes
3answers
55 views

R and rbind making entries without the same length be zero

Say I have two vectors v1 and v2 and that I want to call rbind(v1, v2). However, supposed length(v1) > length(v2). From the documentation I have read that the shorter vector will be recycled. Here is ...
4
votes
1answer
58 views

Keep row names when using rbind.fill in R

Does anyone know how to keep rownames in the rbind.fill function. library(plyr) #creating data a <- mtcars[ 1:5 , c("mpg","hp","gear") ] b <- mtcars[ 6:10 , c("mpg","disp","gear") ] #does not ...
2
votes
1answer
33 views

Rbind throwing Error in NextMethod() : invalid value

My data frame is as follows: > t Day TestID VarID 1 2013-04-27 Total Total > str(t) 'data.frame': 1 obs. of 3 variables: $ Day : Date, format: "2013-04-27" $ TestID: factor [1, 1] ...
0
votes
2answers
126 views

Add a new row in specific place in a dataframe

Heres my data: > data Manufacturers Models 1 Audi RS5 2 BMW M3 3 Cadillac CTS-V 4 Lexus ISF I would like to add 1 ...
0
votes
1answer
66 views

efficiency of rbind

I'm writing a script that has to build a large matrix. I want to take a vector of names for each name get data from a different data frame do some operations on it, and then return a vector of data ...
10
votes
1answer
299 views

Why is rbindlist “better” than rbind?

I am going through documentation of data.table and also noticed from some of the conversations over here on SO that rbindlist is supposed to be better than rbind. I would like to know why is ...
1
vote
1answer
180 views

Import and rbind multiple csv files with common name in R

I have multiple CSV files with 4 common character in their names. I want to know how I can rbind the files with the same common character. For example, "AM-25" is common in name of 3 csv files and ...
0
votes
2answers
232 views

R - rbind transposing single column matrix

I'm pretty new to R, but it seems that this is a specific problem to which I have not been able to find an answer. My program reads in some data, then rbinds certain columns of that data to one of ...
0
votes
2answers
138 views

Can you use rbind.fill without having it fill in NA's?

I am trying to combine two dataframes with different number of columns and column headers. However, after I combine them using rbind.fill(), the resulting file has filled the empty cells with NA. ...
8
votes
1answer
116 views

How to avoid renaming of rows when using rbind inside do.call?

I am trying to bind some sub elements of the elements from the list The list OC is as follows > library(quantmod) > OC <- getOptionChain('AAPL', NULL) > str(OC) List of 9 $ Feb ...
0
votes
0answers
128 views

How to correctly use rbind/cbind to in this loop?

I'm trying to get my head around to finding a way to add one column with specific citynames into a my data.frame hdwd: Following loop gets weather data for data range and puts it into a data.frame: ...
5
votes
2answers
398 views

rbind two data.frame preserving row order and row names

I have a list of data.frame objects which i would like to row append to one another, ie merge(..., all=T). However, merge seems to remove the row names which I need to be kept intact. Any ideas? ...
2
votes
4answers
120 views

interweave two data.frames in R

I would like to interweave two data.frame in R. For example: a = data.frame(x=1:5, y=5:1) b = data.frame(x=2:6, y=4:0) I would like the result to look like: > x y 1 5 2 4 2 4 3 3 3 3 ...
4
votes
1answer
164 views

Mysterious problems appending data frames with rbind

I am in a dilly of a pickle trying to join several files together into a master file. There are 5 files with same structure, and I can read each file individually into a data frame with no problems. I ...
5
votes
4answers
134 views

rbindfill like merge of list of vectors

I have a list of named vectors (see below and at end for dput version) I would like to "merge" together to make a matrix and fill in zeros if a vector doesn't contain a name (character in this case). ...
0
votes
2answers
428 views

rbind list of data frames with one column of characters and numerics

I have a list of two data frames with the same column names, but different number of rows, rbind.fill can help to put them together into a big data frame, but the problem is that the first column in ...
3
votes
1answer
632 views

rbind data.frames without names

I am trying to figure out why the rbind function is not working as intended when joining data.frames without names. Here is my testing: test <- data.frame( id=rep(c("a","b"),each=3), ...
2
votes
1answer
526 views

rbind data frames, duplicated rownames issue

While duplicated row (and column) names are allowed in a matrix, they are not allowed in a data.frame. Trying to rbind() some data frames having row names in common highlights this problem. Consider ...
2
votes
1answer
57 views

overfloating row indicator in dataframe

I'm trying to append a row to an existing dataframe in R. The dataframe represents a subject and I want to update this with newly (generated) data. When I run this, the index numbers of the dataframe ...
2
votes
1answer
112 views

appending new data to specific elements in lists in r

Please correct me if my terminology is wrong because on this question Im not quite sure what Im dealing with regarding elements, objects, lists..I just know its not a data frame. Using the example ...
2
votes
2answers
82 views

Creating a full diallel using R

I am relativly new to R, excuse if this question is too basic. I am wondering whether there is a good and fast way to create a full diallel using R? I have a matrix that looks likes: M1 M2 ...
4
votes
2answers
161 views

extracting segments of a data.table

I have a data.table and I need to extract equal length segments starting at various row locations. What is the easiest way to do this? For example: x <- data.table(a=sample(1:1000,100), ...
1
vote
2answers
258 views

Prompting user for multiple input files in R

I'm trying to do something I think should be straight forward enough, but so far I've been unable to figure it out (not surprisingly I'm a noob)... I would like to be able to prompt a user for input ...
0
votes
1answer
222 views

Print a multiplication table in R with minimal code

In R, what is the fastest way(shortest code) to print multiplication table? The functions seq rep and the bind functions help, but I'm looking for the shortest line(s) of code to do this. ...
1
vote
2answers
141 views

How can I rbind with missing dataframes?

I'm doing campaign finance data and am searching for employees of x corporation who have donated x amount of money between 1989 and 2010. Using sqldf I was able to parse out this information. The data ...
2
votes
2answers
560 views

Why rbind converts a list of numeric elements to a character matrix?

Why does rbind convert my list of numeric elements to character? > class(mymatrix.list) [1] "list" > class(mymatrix.list[[1]]) [1] "numeric" > mymatrix.results = do.call(rbind, ...
3
votes
1answer
374 views

R: losing names of dimnames of a table after cbind or rbind

After cbind or rbind-ing a table object (for example, adding a margin of sums or somesuch), names of dimnames get lost (see y). I found this "workaround" but was wondering if there's an out of the bag ...
1
vote
1answer
245 views

R: Loading xts series from multiple files into a single block

I have the following R code to load xts timeseries from multiple files and merge them in a single xts matrix: load.files = function(dates, filenames) { for( i in 1:length(dates) ) { # load and ...
15
votes
4answers
1k views

Memory efficient alternative to rbind - in-place rbind?

I need to rbind two large data frames. Right now I use df <- rbind(df, df.extension) but I (almost) instantly run out of memory. I guess its because df is held in the memory twice. I might see ...
1
vote
1answer
360 views

Unexpected “rbind.fill” behavior

I'm confused about the behavior of Hadley's "rbind.fill" function. I have a list of data frames I would like to do a simple rbind operation on, but the rbind.fill function is giving me results that I ...
6
votes
3answers
2k views

Performance of rbind.data.frame

I have a list of dataframes for which I am certain that they all contain at least one row (in fact, some contain only one row, and others contain a given number of rows), and that they all have the ...
1
vote
5answers
372 views

R - how to add cases of one variable to other variable (stack variables)

var1 var2 var3 1 2 3 1 2 3 1 2 3 I want to stack var2 and var3 underneath var1 to get: var1 1 1 1 2 2 2 3 3 3 I tried: data$var <- append(data$var1,data$var2) Then I ...
6
votes
4answers
1k views

R: losing column names when adding rows to an empty data frame

I am just starting with R and encountered a strange behaviour: when inserting the first row in an empty data frame, the original column names get lost. example: > a<-data.frame(one = ...
6
votes
1answer
1k views

join two or more data frames in system R

My questions is how can join two or more data frames in system R? For example: I have two data frames: first: x y z 1 3 2 4 2 4 5 7 3 5 6 8 second: x y z 1 1 1 1 2 4 5 ...