Tagged Questions
The reshape tag has no wiki summary.
7
votes
2answers
300 views
Fastest Tall-Wide pivoting in R
I am dealing with a simple table of the form
date variable value
1970-01-01 V1 0.434
1970-01-01 V2 12.12
1970-01-01 V3 921.1
1970-01-02 V1 -1.10
...
5
votes
5answers
109 views
melt the lower half matrix in R
How can I melt a lower half triangle plus diagonal matrix ?
11 NA NA NA NA
12 22 NA NA NA
13 23 33 NA NA
14 24 34 44 NA
15 25 35 45 55
A <- t(matrix (c(11, NA, NA, NA, NA, 12, 22, ...
5
votes
4answers
167 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
3answers
238 views
Mend reshape-based habits with plyr: melt/cast vs. ddply
I'm kind-of used to do melt and cast all the time, and this time I'm looking for neat one-liner.
require(reshape)
# first I melt some data:
m <- melt(mtcars, id.vars = c("cyl", "am"), measure.vars ...
5
votes
4answers
843 views
Mysql, reshape data from long / tall to wide
I have data in a mysql table in long / tall format (described below) and want to convert it to wide format. Can I do this using just sql?
Easiest to explain with an example. Suppose you have ...
4
votes
3answers
113 views
How to reshape this dataframe with the reshape package
I have a quite large dataframe structured like this:
id x1 x2 x3 y1 y2 y3 z1 z2 z3 v
1 2 4 5 10 20 15 200 150 170 2.5
2 3 7 ...
4
votes
2answers
440 views
Pivot Table-like Output in R?
I am writing a report that requires the generation of a number of pivot tables in Excel. I would like to think there is a way to do this in R so that I can avoid Excel. I would like output like the ...
4
votes
2answers
594 views
How can I generate by-group summary statistics if my grouping variable is a factor?
Suppose I wanted to get some summary statistics on the dataset mtcars (part of base R version 2.12.1).
Below, I group the cars according to the number of engine cylinders they have and take the ...
4
votes
1answer
629 views
melt to two variable columns
I have the following variables in a data frame
[1] "Type" "I.alt" "idx06" "idx07" "idx08" "farve1" "farve2"
If I do
dm <- melt(d, id=c("Type","I.alt"))
i get theese variables
"Type" ...
4
votes
3answers
3k views
Reshaping data frame in R
I'm running into difficulties reshaping a large dataframe. And I've been relatively fortunate in avoiding reshaping problems in the past, which also means I'm terrible at it.
My current dataframe ...
3
votes
1answer
78 views
Fastest way to reshape variable values as columns
I have a dataset with about 3 million rows and the following structure:
PatientID| Year | PrimaryConditionGroup
---------------------------------------
1 | Y1 | TRAUMA
1 | Y1 | ...
3
votes
3answers
80 views
Unique rows with multiple comma separated entries in R
Background: I am in the process of annotating SNPs from a GWAS in an organism without much annotation. I am using the chained tBLASTn table from UCSC along with biomaRt to map each SNP to a probable ...
3
votes
4answers
138 views
R reshape, restructure dataframe by chunks
I am trying to reshape a dataframe:
Currently it looks like this:
ID | Gender |A1 | A2 | A3 | B1 | B2 | B3
ID_1 | m | 3 | 3 | 3 | 2 | 3 | 2
ID_2 | f | 1 | 1 | 1 | 4 | 4 | 4
I ...
3
votes
3answers
82 views
Reshape cast compare to one level
I often have data where I want to compare the value of one level of variable with all the other levels of variable. Each time I write code to do this I wish it were easier. Here's an example of the ...
3
votes
2answers
202 views
Using melt / cast with variables of uneven length in R
I'm working with a large data frame that I want to pivot, so that variables in a column become rows across the top.
I've found the reshape package very useful in such cases, except that the cast ...
3
votes
4answers
434 views
How to use acast (reshape2) within a function in R?
I tried to use acast from reshape2 within a self written function, but had the problem that acast did not find the data I send to it.
Here is my data:
library("reshape2")
x <- data.frame(1:3, ...
3
votes
1answer
945 views
How do I shrink a matrix using an array mask in MATLAB?
This seems to be a very common problem of mine:
data = [1 2 3; 4 5 6];
mask = [true false true];
mask = repmat(mask, 2, 1);
data(mask) ==> [1; 4; 3; 6]
What I wanted was [1 3; 4 6].
Yes I can ...
3
votes
2answers
3k views
Reshape 3d matrix to 2d matrix
I have a 3d matrix (n-by-m-by-t) in MATLAB representing n-by-m measurements in a grid over a period of time. I would like to have a 2d matrix, where the spatial information is gone and only n*m ...
3
votes
3answers
8k views
How do I resize a matrix in MATLAB?
Suppose I had a 1-by-12 matrix and I wanted to resize it to a 4-by-3 matrix. How could I do this?
My current solution is kind of ugly:
for n=1:length(mat)/3
out(n,1:3) = ...
2
votes
2answers
49 views
Reshape Panel Data Wide Format to Long Format
I am struggling with transformation of a Panel Dataset from wide to long format. The Dataset looks like this:
ID | KP1_430a | KP1_430b | KP1_430c | KP2_430a | KP2_430b | KP2_430c | KP1_1500a | ...
...
2
votes
2answers
54 views
Reorder plot values below diagonal line?
I have a data file organized by row with an x label, y label, and then a value. The basic structure looks like this:
Factor_1,Factor_2,Number
apple,apple,1
banana,apple,1
apple,kiwi,6
apple,pear,1
...
2
votes
1answer
71 views
R + reshape: using colsplit w/regex
I am trying to use colsplit to break up a vector in a dataframe. The fact that we have regular expression as an arg to colsplit makes me think it can be flexible, but I am having trouble (it might ...
2
votes
2answers
72 views
Reshape data for values in one column
My data.frame looks like this
ID | test | test_result
1 | B | 10
2 | A | 9
3 | A | 11
4 | C | 7
5 | F | 5
And I want to get something like this:
test | test_reult_ID1 ...
2
votes
2answers
62 views
Speeding up reshaping person to period-format dataframe in R
I have a dataset with longitudinal data in a person-oriented format, as such:
pid varA_1 varB_1 varA_2 varB_2 varA_3 varB_3 ...
1 1 1 0 3 2 1
2 0 1 0 2 ...
2
votes
1answer
108 views
Setting correct limits with imshow if image data shape changes
I have a 3D array, of which the first two dimensions are spatial, so say (x,y). The third dimension contains point-specific information.
print H.shape # --> (200, 480, 640) spatial extents ...
2
votes
1answer
107 views
Error message running the example from the reshape2 help page
My code, which was running without problems before, crashed when calling the dcast formula. After playing around, I found out that even the minimal example from the help page of dcast does not work ...
2
votes
4answers
125 views
R: Turning data in a dataframe to columns
I have a dataframe like this
Tag Date (DD/MM/YYYY)
AA 1/1/2010
AB 2/1/2010
AC 3/1/2010
AA 4/1/2010
AB 5/1/2010
AA 6/1/2010
AB 7/1/2010
AC 8/1/2010
Now, there are finite ...
2
votes
1answer
242 views
R reshape package: “Error in Dim(x)”… “dims [product 100] do not match the length of object [109]”
I've got what I think is a relatively benign reshape going using the reshape package. I have "molten" data that looks like this:
> head(meltDf)
CITY DATE variable value
1 Anqing ...
2
votes
1answer
167 views
How do I convert/reshape a data frame in long format to a wide format without aggregating the records?
From this:
> test <- data.frame(x = c("a","a","a"), y = c("b","b","c"), z = c(1,2,1))
> test
x y z
1 a b 1
2 a b 2
3 a c 1
To this:
x b c
1 a 1 NA
2 a 2 NA
3 a NA 1
2
votes
2answers
138 views
R: Problem melting/casting my data into shape
I have a table that looks like this:
And I need it to look like this, where net=gross-tare:
How do I do this?
I started by melting the data, then casting as columns, and then creating new ...
2
votes
3answers
106 views
R Reshape function is transforming integers into characters
Hi I am trying to use the reshape function for the first time. I have a data.frame with lots of information and daily rainfall. I am trying to put it in a long format so that I will have one row per ...
2
votes
4answers
64 views
how to take tables of (x,y,V) rows and get a matrix/table where the value at position x,y is V
I have a data frame that looks like:
> ta
ranks omp ALLA1
1 512 4 772.9
2 1024 2 769.9
3 2048 1 914.2
4 256 8 932.3
5 128 16 1352.0
6 256 16 948.4
7 512 8 ...
2
votes
2answers
388 views
Reshape data frame from wide to panel with multiple variables and some time invariant
This is a basic problem in data analysis which Stata deals with in one step.
Create a wide data frame with time invariant data (x0) and time varying data for years 2000 and 2005 (x1,x2):
d1 <- ...
2
votes
2answers
1k views
Getting a stacked area plot in R
This question is a continuation of the previous question I asked.
Now I have a case where there is also a category column with Prop. So, the dataset becomes like
Hour Category Prop2
00 ...
2
votes
2answers
388 views
Error with custom aggregate function for a cast() call in R reshape2
I want to use R to summarize numerical data in a table with non-unique rownames to a result table with unique row-names with values summarized using a custom function. The summarization logic is: use ...
2
votes
1answer
203 views
Reshaping Data in “chains” format (stata .DTA file)
I've got data in "chain" format where there are subjects that get a treatment "locks" and subjects, or "links", that are recruited from each "lock". Therefore , my data are shaped both widely and ...
2
votes
4answers
139 views
R -openAir, 96x31 time/date data into stacked data
I have a table showing variable flows for each 15minute period of the day and each day of the month
eg:
date,00:00,00:15,00:30,
01-Nov,123,345,456,
02-Nov,234,567,890
I want to get this into the ...
2
votes
2answers
1k views
load csv into 2D matrix with numpy for plotting
I am trying to do something very simple with numpy yet I seem to be failing. I am very familiar with Matlab but quite new to numpy.
Given this CSV file:
"A","B","C","D","E","F","timestamp"
...
2
votes
1answer
852 views
Merge several data frames on two common columns
I've seen some questions about merging csv files into one data frame. What if the data frames are already in the workspace. I have five wide zoos that I cast as data frames, then melt. Here's the head ...
2
votes
1answer
421 views
ggplot2 and reshape2
I have glad to hear that there is an updated version for reshape2 package.
I installed the package, but discovered that ggplot2 package still insist to have the reshape package, rather than the ...
2
votes
3answers
272 views
Reshape data based on column in dataframe
I need to take a data.frame in the format of:
id1 id2 mean start end
1 A D 4 12 15
2 B E 5 14 15
3 C F 6 8 10
and generate duplicate rows based on the difference ...
2
votes
1answer
986 views
Android: How to create custom shape keys on keyboard?
I wonder how could is possible to make custom shape key on android keyboard. To create custom keyboard is relatively easy, but what needs to be done to create new buttons. They also need to respond ...
2
votes
1answer
204 views
Is the MATLAB function of 'reshape' available in any Java library?
I am trying to use the functionality of the reshape function available in MATLAB in Java. Are there any implementations of reshape available in Java?
2
votes
2answers
1k views
Reshape data frame to convert factors into columns in R
I have a data frame where one particular column has a set of specific values (let's say, 1, 2, ..., 23). What I would like to do is to convert from this layout to the one, where the frame would have ...
2
votes
4answers
472 views
Getting “raw” data from frequency table
I've been looking around for some data about naming trends in USA. I managed to get top 1000 names for babies born in 2008. The data is formated in this manor:
male.name n.male female.name n.female
...
1
vote
2answers
57 views
Reshape Wide to Long in R and include Sequence Number
I am looking to take data that is currently wide and melt it into a long format. The trick is that I want to create a sequence indicator.
Here are my data:
df.wide <- data.frame(id = 1:5,
...
1
vote
0answers
48 views
error message when requiring package reshape
I am on a pc with windows 7, 32 bit service pack 1, cpu intel i3-500 , installed Ram 4.00 (2.93 free) using R 2.14.1 . I installed package reshape (OK), but as I require(reshape) I get:
Failed with ...
1
vote
2answers
41 views
Pasting (or merging) two elements of a column together
I have two sources of clinical procedure billing information that I have added together (with rbind). In each row there is a CPT field and a CPT.description field that supplys a brief explanation. ...
1
vote
1answer
67 views
strsplit a melted dataset
I am trying to graph the results of a genetic test that comes in the format of a large CSV file. Each x,y position in the CSV is a number score, most of which are zero. I am only interested in ...
1
vote
1answer
36 views
Reshape matrix from 3d to 2d keeping rows
I am transforming a 3d matrix into a 2d matrix. This is the shape transformation: [n x m x o] -> [n*o x m].
The elements of the matrices are row-related. Thus, it is required to have the same rows ...