The Reshape2 package in R contains functions that allow data to be transformed into more convenient forms.

learn more… | top users | synonyms

4
votes
2answers
45 views

simple reshape in R using reshape2 causes error

I am trying to do a simple reshape to make test look like this: a_estimate, a_tstat, b_estimate, b_tstat 1, 3, 2, 4 This is the code I try: require(reshape2) ...
4
votes
3answers
65 views

Speed up `strplit` when possible output are known

I have a large data frame with a factor column that I need to divide into three factor columns by splitting up the factor names by a delimiter. Here is my current approach, which is very slow with a ...
0
votes
0answers
50 views

Melt in reshape2

I have a dataframe for plotting the results of an ordinal regression model. I´d like to melt my dataframe, but the results are not correct. When I create a toy dataframe from the original dataframe ...
1
vote
2answers
69 views

How to convert a matrix of strings into matrix of 0 and 1's

Hi I have a dataset which looks like this name1 a b c d name2 a c e g i name3 t j i m n z dput output: structure(c("name1", "name2", "name3", "a ", "a", "r ", "b", "c", "k ", "c", "e", ...
-1
votes
1answer
44 views

Panel Data from Long to wide reshape or cast

Hi i have panel data and would like to reshape or cast my Indicator name column from long to wide format. currently all the columns are in long format, Year(1960-2011), Country Name (all the countries ...
0
votes
1answer
17 views

Reshaping block in data.frame to lists is columns uneven length

I would need your help with R to cast this data: STATUS SCORE JOB.ID 1 STATUS1 99 JOB1 2 STATUS1 99 JOB2 3 STATUS1 99 JOB3 4 STATUS1 99 JOB4 5 STATUS2 ...
0
votes
1answer
37 views

How to use “cast” in reshape without aggregation

In many uses of cast I've seen, an aggregation function such as mean is used. How about if you simply want to reshape without information loss. For example, if I want to take this long format: ID ...
2
votes
1answer
64 views

reshape alternating columns in less time and using less memory

How can I do this reshape faster and so that it takes up less memory? My aim is to reshape a dataframe that is 500,000 rows by 500 columns with 4 Gb RAM. Here's a function that will make some ...
0
votes
0answers
6 views

how would I get the below answer using melt/cast from reshape2 package

I have two data frames, x and y. I rbind them to get z. Then I use reshape function (not package) to get the below answer. set.seed(1234) x <- data.frame(rp=c(1:5),dmg=1000*runif(5), ...
3
votes
4answers
153 views

Compute mean and standard deviation by group for multiple variables in a data.frame

Edit -- This question was originally titled << Long to wide data reshaping in R >> I'm just learning R and trying to find ways to apply it to help out others in my life. As a test case, I'm ...
2
votes
6answers
83 views

split characters into two variables in data frame

Let's say I have a vector of variables like this: >variable [1] "A1" "A1" "A1" "A1" "A2" "A2" "A2" "A2" "B1" "B1" "B1" "B1" and I want to covert this into into a data frame like this: ...
0
votes
3answers
66 views

Transforming a min() and a max() value into a range of values

I would like stretch some of my records that were flattened I have a table like this Store Min(Date) Max (Date) Status NYC1 1/1/2013 2/1/2013 Open NYC1 ...
1
vote
2answers
51 views

Convert long data frame into wide data frame

I am trying to convert long data form into wide data form in R. For instance, I have following data frame: a = rep(c("A","B","C","D"),4) b = rep(c("COL1","COL2","COL3","COL4"),4) val = 101:116 df = ...
1
vote
1answer
24 views

casting error - Error in .subset2(x, i, exact = exact)

It feels like I'm missing something obvious here, so apologies in advance. Anyways, here's some data a that I'm trying to cast: acct_num year_prem prem exc 001 2012 ...
0
votes
1answer
30 views

custom variable names in R reshape2

Is there a way to change the default way that the dcast function names variables? For example require(reshape2) x = data.frame(id=1:2, t=1:5, v=10:1) m = melt(x, id.vars = c("id", "t")) cx = dcast(m, ...
2
votes
1answer
42 views

Reversing a melting operation with reshape2 [duplicate]

Consider the following code. library (reshape2) x = rnorm (20) y = x + rnorm (rnorm (20, sd = .01)) dfr <- data.frame (x, y) mlt <- melt (dfr) When I try to reverse this operation with ...
0
votes
3answers
70 views

R reshape to comparable long

I have a matrix x A B C D 1 11 12 13 14 2 21 22 23 24 3 31 32 33 34 4 41 42 43 44 5 51 52 53 54 and two vetors [,1] [,2] [1,] "A" "B" [2,] "A" "C" [3,] "A" "D" [4,] "B" "C" [5,] ...
2
votes
1answer
69 views

Simpler way to reconstitute a melted data frame back to the original

How do I recreate a data.frame that I melted with reshape2? Reproducible example library(reshape2) library(plyr) data(iris) df <- melt(iris, id.vars="Species") head(df) Species variable ...
1
vote
1answer
36 views

How can I create a summary table from lists of matrices?

Data: k1 <- structure(list(`3280.2000` = structure(c(0, 1.363, 0, 4.198, 1.097, 1.669, 0, 1.098, 0), .Dim = c(3L, 3L), .Dimnames = list( c("3280.3500", "3280.400", "3280.4000"), ...
5
votes
3answers
143 views

Reshape wide format, to multi-column long format

I want to reshape a wide format data set that has multiple tests which are measured at 3 time points... ID Test Year Fall Spring Winter 1 1 2008 15 16 19 1 1 2009 ...
2
votes
2answers
64 views

melt with chron

I'm trying to melt a data frame with chron class library(chron) x = data.frame(Index = as.chron(c(15657.00,15657.17)), Var1 = c(1,2), Var2 = c(9,8)) x Index Var1 Var2 1 (11/13/12 ...
2
votes
2answers
101 views

R - Dramatic increase in file size after reshaping wide to long data [closed]

I have a medium size database (~400,000 rows, 27 columns) that I need to search across most of the columns (25 of them) with the same criteria for comparison. I figured it would be more efficient to ...
0
votes
1answer
39 views

which.min within reshape2's dcast()?

I would like to extract the value of var2 that corresponds to the minimum value of var1 in each building-month combination. Here's my (fake) data set: head(mydata) # building month var1 ...
2
votes
2answers
67 views

ddply - spaces in variable name contained in an object

Is there a way to pass both named variables and an object containing a variable name with spaces into ddply? Here is an example of what I mean: > library(plyr) > dat <- ...
9
votes
1answer
194 views

segfault in R using reshape2 package and dcast

RStudio was crashing when I tried to reshape a particular data frame using dcast (from the reshape2 package). I discovered that the crash was actually happening in R itself, so I ran my casting code ...
16
votes
8answers
411 views

complicated reshaping

I want to reshape my dataframe from long to wide format and I loose some data that I'd like to keep. For the following example: df<-data.frame(Par1=unlist(strsplit("AABBCCC","")), ...
0
votes
1answer
55 views

Reshaping a data.frame

I have the following table structure(list(Compound = structure(c(1L, 2L, 3L, 1L, 1L, 3L), .Label = c("Nap", "Phe", "tre"), class = "factor"), Area = c(17197669L, 19464754L, 35792660L, 10097291L, ...
0
votes
1answer
39 views

How do I construct “quoted expressions” for use in reshape2's dcast?

The documentation for reshape2 gives the following detail regarding the subset attribute to dcast: subset quoted expression used to subset data prior to reshaping, e.g. subset = ...
7
votes
3answers
107 views

Reorganizing data from 3 rows to 1

I need to reorganize data from a csv file that contains mostly repeating data. I have the data imported into R in a dataframe but I am having trouble with the following: ID Language Author ...
3
votes
3answers
94 views

Rearrange a matrix in R using two factors

Here is the problem. There is a matrix with N rows and C columns, and two factors: ids and group, both of length N. For example: m <- matrix( 1:25, nrow= 5, byrow= T ) id <- factor( c( "A", ...
2
votes
2answers
53 views

How Do I Go About Transposing/Cutting Columns into Rows in R

I am working with a large dataset on country level data that is in country-year format and appears in the following form (abridged for ease): Country Variable of Interest Year Bolivia 5 ...
7
votes
3answers
88 views

Integer64 class doesn't survive reshape2 melt function

I don't know whether this is an integer64 (from bit64) problem, or a melt problem (from reshape2, but if I try to reshape a data.frame containing integer64 data then the class information is destroyed ...
3
votes
1answer
76 views

Aggregating multiple subtotals?

Is there a way to aggregate multiple sub-totals with reshape2? E.g. for the airquality dataset require(reshape2) require(plyr) names(airquality) <- tolower(names(airquality)) aqm <- ...
1
vote
1answer
65 views

Cast a data frame with a timevar in reshape2, as with the reshape base function?

Suppose I've got the following data frame : d <- data.frame(id=c(1,1,1,2,2,3,3,3), time=c(1,2,3,1,2,1,2,3), var=runif(8)) d id time var 1 1 1 0.3733586 2 1 2 0.5743769 3 1 3 ...
1
vote
1answer
54 views

Reshape help needed [closed]

I am trying to reshape my data from this form in exhibit A to the form in exhibit B. I've tried reshape and looping over the data by each three columns and appending the datasets, but can't quite get ...
0
votes
2answers
222 views

Use ddply() to aggregate relative histogram counts

Related to a previous question I asked (ggplot2 how to get 2 histograms with the y value = to count of one / sum of the count of both), I tried to write a function which would take a data.frame as ...
0
votes
2answers
38 views

reshaping data in R skipping certain measured variables

I would like to reshape a data.frame that looks like this: permno dte ttm var1 var2 var3 1 123 2012-01-01 20 1 10 100 2 123 2012-01-01 30 -1 10 100 3 124 ...
4
votes
2answers
93 views

Enumerate instances of a factor level

I have a data frame with 150000 lines in long format with multiple occurences of the same id variable. I'm using reshape (from stat, rather than package=reshape(2)) to convert this to wide format. I ...
3
votes
2answers
102 views

How to transpose/cast two variables to one line?

I need to turn this id | amount | day --------------------- A | 10 | 0 A | 54 | 8 A | 23 | 18 A | 43 | 28 A | 87 | 51 B | 34 | 0 B | 76 | 1 ...
5
votes
6answers
137 views

“unpacking” a factor list from a data.frame

I'm new to R / having the option to easily re-organize data, and have hunted around for a solution but can't find exactly what I'd like to do. Reshape2's melt/cast doesn't quite seem to work and I ...
0
votes
3answers
120 views

paste values within categories defined by multiple columns

I want to pivot the result column in df horizontally creating a data set with a separate row for each region, state, county combination where the columns are ordered by year then city. I also want to ...
11
votes
2answers
330 views

Generate graphs in R for certain correlations in a matrix

I want to generate graphs between variables (columns) that have a correlation above and below a certain point as well as having a pvalue < 0.01. The graphs would be ggplot2 (line or bar) graphs ...
1
vote
1answer
196 views

melt and merge several files into a single database using R

I have been trying to import several csv files, use the function "melt" and merge them into a single database in R. All the files have an "id", "date.time" and "tag" column; however, the rest of the ...
8
votes
3answers
189 views

Fast melted data.table operations

I am looking for patterns for manipulating data.table objects whose structure resembles that of dataframes created with melt from the reshape2 package. I am dealing with data tables with millions of ...
3
votes
1answer
162 views

High-performance big data manipulation in R

I am dealing with a collection of lists, which contain deeply nested lists with no fixed structure other than the fact that: The lists at level 1 have a single element called variations All leaf ...
0
votes
3answers
88 views

Converting dataframe to partial “wide” and partial summary by group

I have the following data frame id datestamp hrofday val1 val2 val3 a 20120401 0 3.2 0 1 a 20120401 1 3.3 4 0 a 20120401 2 3.4 6 0 ... a 20120401 23 7.3 0 2 It represents a user-id followed by ...
0
votes
1answer
71 views

How to pass a premade list of functions to cast

cast, from the reshape2 package, can handle a bunch of functions if passed directly in the call. For example: library(reshape2) d <- data.frame(variable="variable",value=rnorm(100)) cast(d, ...
2
votes
1answer
105 views

Finance - Random Portfolios using plyr and rportfolio - need to split columns

I am trying to compare an actual portfolio's performance to the performances of hypothetical random portfolios. Here is a sample of the data set I am working with. It shows two months worth of data, ...
6
votes
1answer
210 views

Reshaping a complex dataset from long to wide using recast()

I am working with a dataset that comes with lme4, and am trying to learn how to apply reshape2 to convert it from long to wide [full code at the end of the post]. library(lme4) data("VerbAgg") # ...
3
votes
1answer
67 views

reshape2: dcast tall into wide without aggregating

Consider ext <- data.frame(cond = rep(c('a', 'b'), each = 2), dat = runif(4) ) I want exw <- unstack(ext, dat ~ cond) But I would like to do it with dcast() in reshape2 (for pedagogical ...

1 2