Tagged Questions

A data frame is one of the basic data structures in the [tag:r] language. Data frames are lists of variables each with the same number of rows, similar to a table in a data base. Unlike matrices in R, each variable can be a different data type.

learn more… | top users | synonyms (2)

55
votes
9answers
32k views

How to sort a dataframe by column(s) in R

I want to sort a data.frame by multiple columns in R. For example, with the data.frame below I would like to sort by column z (descending) then by column b (ascending): dd <- data.frame(b = ...
45
votes
4answers
4k views

Quickly reading very large tables as dataframes in R

I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that would slow ...
35
votes
7answers
6k views

dropping factor levels in a subsetted data frame in R

I have a data frame containing a factor. When I create a subset of this data frame using subset() or another indexing function, a new data frame is created. However, the factor variable retains all ...
17
votes
4answers
6k views

R - remove rows with NAs in data.frame

I'd like to remove the lines in this dataframe that contains NAs across all columns. Below is my example data.frame. gene hsap mmul mmus rnor cfam 1 ENSG00000208234 0 NA NA NA ...
15
votes
1answer
322 views

Most efficient list to data.frame method?

Just had a conversation with coworkers about this, and we thought it'd be worth seeing what people out in SO land had to say. Suppose I had a list with N elements, where each element was a vector of ...
14
votes
3answers
176 views

Why is running “unique” faster on a data frame than a matrix in R?

I've begun to believe that data frames hold no advantages over matrices, except for notational convenience. However, I noticed this oddity when running unique on matrices and data frames: it seems to ...
14
votes
2answers
688 views

how to merge a list of data.frames by row

Most of the questions about merging data.frame in lists on SO don't quite relate to what I'm trying to get across here, but feel free to prove me wrong. I have a list of data.frames. I would like to ...
13
votes
2answers
87 views

“..1” in the body of “[[.data.frame”

When I look at the contents of [[.data.frame on my PC, this is what I get: > get("[[.data.frame") function (x, ..., exact = TRUE) { na <- nargs() - (!missing(exact)) if ...
12
votes
3answers
590 views

R - loop over rows of dataframe applying function with if-statement

I'm new to R and I'm trying to sum 2 columns of a given dataframe, if both the elements to be summed satisfy a given condition. To make things clear, what I want to do is: > ...
11
votes
3answers
101 views

How to add documentation to a data.frame in R?

I've been using R for a while and I've realized it would help a lot if you could attach a description data contained in the data.frame, because you could gather all useful research information in a ...
11
votes
4answers
267 views

Apply multiple functions to each row of a dataframe

Every time I think I understand about working with vectors, what appears to be a simple problem turns my head inside out. Lot's of reading and trying different examples hasn't helped on this occasion. ...
11
votes
3answers
272 views

Dealing with repetitive tasks in R

I often find myself having to perform repetitive tasks in R. It gets extremely frustrating having to constantly run the same function on one or more data structures over and over again. For example, ...
11
votes
6answers
1k views

In R, what is the difference between the [] and [[]] notations for accessing the elements of a list?

R provides two different methods for accessing the elements of a list or data.frame- the [] and [[]] operators. What is the difference between the two? In what situations should I use one over the ...
10
votes
3answers
244 views

Fastest way to replace NAs in a large data.table

I have a large data.table, with many missing values scattered throughout its ~200k rows and 200 columns. I would like to re code those NA values to zeros as efficiently as possible. I see two ...
8
votes
4answers
106 views

How to get a numbered list renumbering when a value changes

I have 2 lists of numbers (col1 & col2) below. I'd like to add 2 columns (col3 & col4) that do the following. col3 numbers col2 starting at 1 every time col2 changes (e.g. from b2 to b3). col4 ...
8
votes
2answers
139 views

Elegant indexing up to end of vector/matrix

Is it possible in R to say - I want all indices from position i to the end of vector/matrix? Say I want a submatrix from 3rd column onwards. I currently only know this way: A = matrix(rep(1:8, each = ...
8
votes
4answers
350 views

What is the most efficient way to cast a list as a data frame?

Very often I want to convert a list wherein each index has identical element types to a data frame. For example, I may have a list: > my.list [[1]] [[1]]$global_stdev_ppb [1] 24267673 ...
8
votes
7answers
7k views

R: convert data.frame columns from factors to characters

I have a data frame. Let's call him bob: > head(bob) phenotype exclusion GSM399350 3- 4- 8- 25- 44+ 11b- 11c- 19- NK1.1- Gr1- TER119- GSM399351 3- 4- 8- ...
7
votes
1answer
100 views

How to save a data.frame in R?

I made a data.frame in R that is not very big, but it takes quite some time to build. I would to save it as a file, which I can than again open in R?
7
votes
2answers
66 views

Identical data frames with different digests in R?

I have two large data frames, a and b for which identical(a,b) is TRUE, as is all.equal(a,b), but identical(digest(a),digest(b)) is FALSE. What could cause this? What's more, I tried to dig in ...
7
votes
4answers
3k views

Creating an R dataframe row-by-row

I would like to construct a dataframe row-by-row in R. I've done some searching, and all I came up with is the suggestion to create an empty list, keep a list index scalar, then each time add to the ...
7
votes
1answer
3k views

R: Converting a list of data frames into one data frame

I have code that at one place ends up with a list of data frames which I really want to convert to a single big data frame. I got some pointers from an earlier question which was trying to do ...
6
votes
1answer
87 views

How to disable stringsAsFactors=TRUE in data.frame permenantly?

As title, frankly I am a bit sick of manually doing the adjustment all the time. This should be a simple question, but I just can't figure out how to fix it. Thanks.
6
votes
3answers
112 views

Moving values between rows without a for loop in R

I have written some code used to organize data sampled at different frequencies, but I made extensive use of for-loops, which slow the code's operation down significantly when the data set is large. ...
6
votes
2answers
458 views

R: converting each row of a data frame into a list item

I have a number of operations on data frames which I would like to speed up using mclapply() or other lapply() like functions. One of the easiest ways for me to wrestle with this is to make each row ...
6
votes
6answers
279 views

Only keep min value for each factor level

I got a problems that bugs me for some time… hopefully anybody here can help me. I got the following data frame f <- c('a','a','b','b','b','c','d','d','d','d') v1 <- ...
6
votes
2answers
3k views

R : remove columns from dataframe where ALL values are NA

I'm having some trouble with my huge data frame and couldn't really resolve that question myself: The dataframe has some properties as columns and each row represents one data set. I've done some ...
6
votes
1answer
774 views

How to transform XML data into a data.frame?

I'm trying to learn R's XML package. I'm trying to create a data.frame from books.xml sample xml data file. Here's what I get: library(XML) books <- "http://www.w3schools.com/XQuery/books.xml" doc ...
5
votes
3answers
239 views

Merge multiple data frames in a list simultaneously

I have a list of many data frames that I want to merge (not merely rbind, for which plyr's rbind.fill would do the job in a stroke) into a single, combined data frame. Because the merge command only ...
5
votes
3answers
110 views

Pattern matching in a data frame context

I have a data frame, the first 5 lines of which looks as follows: Sample CCT6 GAT1 IMD3 PDR3 RIM15 001 0000000000 111111111111111111111 ...
5
votes
4answers
164 views

Rearrange dataframe to a table, the opposite of “melt”

I have huge dataframe like this: SN = c(1:100, 1:100, 1:100, 1:100) class = c(rep("A1", 100), rep("B2", 100), rep("C3", 100), rep("D4", 100)) # total 6000 levels myvar = rnorm(400) mydf = ...
5
votes
2answers
229 views

Identify records in data frame A not contained in data frame B [closed]

This is my first time posting here, so please be kind ;-) EDIT My question was closed before I had a chance to make the changes suggested to me. So I'm trying to do a better job now, thanks for ...
5
votes
3answers
205 views

ddply with lm() function

Hi guys how can I use ddply function for linear model: x1 <- c(1:10, 1:10) x2 <- c(1:5, 1:5, 1:5, 1:5) x3 <- c(rep(1,5), rep(2,5), rep(1,5), rep(2,5)) set.seed(123) y <- rnorm(20, 10, 3) ...
5
votes
1answer
169 views

Split up a dataframe in R by number of rows

I have a dataframe made up of 400'000 rows and about 50 columns. As this dataframe is so large, it is too computationally taxing to work with. I would like to split this dataframe up into smaller ...
5
votes
2answers
1k views

remove an entire column from a data.frame in R

Does anyone know how to remove an entire column from a data.frame in R? For example if I am given this data.frame: > head(data) chr genome region 1 chr1 hg19_refGene CDS 2 chr1 ...
5
votes
4answers
372 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 ...
5
votes
4answers
492 views

split a data.frame by columns using a grouping variable

It's fairly easy to split a data.frame by rows depending on a grouping factor. But how do I split by columns and possibly apply a function? my.df <- data.frame(a = runif(10), b = ...
5
votes
4answers
465 views

multiply each cell of a data.frame with it's weight

What I want to do is embarrassing simple - nevertheless I fail. I have a data.frame with "characters" and "numerics". One of the columns of the data.frame represents the weights. I want to multiply ...
5
votes
5answers
518 views

How do I add a row to a data frame with totals?

I have a data frame where I would like to add an additional row that totals up the values for the columns. For example, Let's say I have this data: x <- data.frame(Language=c("C++", "Java", ...
5
votes
7answers
2k views

how to plot all the columns of a data frame in R

I have a data frame in R. The data frame has n columns and I would like to get n plots, one plot for each column. I'm a newbie and I am not fluent in R, anyway I found two solutions. The first one ...
5
votes
3answers
361 views

Joining factor levels of two columns in R

I have 2 columns of data with the same type of data (Strings). I want to join the levels of the columns. ie. we have: col1 col2 Bob John Tom Bob Frank Jane Jim Bob Tom Bob ... ... ...
5
votes
1answer
313 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 ...
5
votes
1answer
8k views

Adding a column to a dataframe in R

I have the following dataframe (df) start end 1 14379 32094 2 151884 174367 3 438422 449382 4 618123 621256 5 698271 714321 6 973394 975857 7 980508 982372 8 994539 ...
5
votes
7answers
2k views

Rbind different number of columns

Is it possible to row bind two data frames that don't have the same set of columns? I am hoping to retain the columns that do not match after the bind. I am new to R but figure that there has to ...
5
votes
2answers
305 views

improve my code for collapsing a list of data.frames

Dear StackOverFlowers (flowers in short), I have a list of data.frames (walk.sample) that I would like to collapse into a single (giant) data.frame. While collapsing, I would like to mark (adding ...
5
votes
5answers
983 views

Best way to store variable-length data in an R data.frame?

I have some mixed-type data that I would like to store in an R data structure of some sort. Each data point has a set of fixed attributes which may be 1-d numeric, factors, or characters, and also a ...
4
votes
1answer
142 views

How do I select the first row in an R data frame that meets certain criteria?

How do I select the first row of an R data frame that meets certain criteria? Here is the context: I have a data frame with five columns: "pixel", "year","propvar", "component", "cumsum." There ...
4
votes
2answers
87 views

Elegant way to get the colclasses of a data.frame

I currently use the following function to list the classes of a data.frame: sapply(names(iris),function(x) class(iris[,x])) There must be a more elegant way to do this...
4
votes
5answers
127 views

R Convert <key, val> pair into data.frame

In R, I have two vectors of pairs like this: x <- c("A=5", "B=1", "D=1", "E=1", "F=2", "G=1") y <- c("A=2", "B=1", "C=3", "D=1", "H=4") I would like to convert ...
4
votes
2answers
92 views

Better way to get a frequency table for continuous data (R)?

With df: df <- data.frame(value=abs(rnorm(100, 25, 5)), status=sample(0:1,100,replace=T)) df$value[sample(1:100,5)] <- NA I need to get a frequency (percentage) table (better return a matrix) ...

1 2 3 4 5 11