In R and Matlab, reshape functions allow data to be transformed into more convenient forms.
2
votes
1answer
31 views
Assign values from one member of a group to another in R
I have height data for siblings nested in families of two siblings each:
ID family sibling height
1 1 1 1 103
2 2 1 2 100
3 3 2 1 102
4 4 2 ...
3
votes
2answers
61 views
How to arange a heatmap and an scaterplot one above the other in ggplot2
I am a newbie using ggplot2 and I'm trying to plot a scatter plot above a heatmap. Both plots have the same discrete x-axis.
This is the code I'm trying:
library(ggplot2)
library(grid)
...
0
votes
3answers
36 views
How to read the contents of a column, assign these values to new columns and fill them with the values of other columns?
I have the following data frame:
df<-data.frame(site=c("A", "A", "B", "C", "B"), A=c("item1", "item1", "item2", "item2", "item3"),
A_weight=c(4.2,4.2,6.1,6.4,8.5), ...
0
votes
1answer
39 views
Reshape columns of matrix into multidimensional matrix
I have solar data in a huge (17GB) matrix, call it A. Each column represents one station that collected the one-second data over the year and a half period. The stations are physically in a grid ...
-1
votes
1answer
35 views
How to read the matrix values after “reshape” [closed]
Say for instance that I have the following vector:
x=[1 2 3 4];
Here, the vector is read as follows:
x1=1
x2=2
x3=3
x4=4
Is that correct?
Now, if I do the following:
y = reshape(x,2,2);
I ...
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)
...
0
votes
2answers
44 views
reshaping and filtering data frame in R
My data frame looks like this:
Location Data Value Value_kind
A species1 11 single
A species2 10 mean
A species3 8 ...
0
votes
3answers
30 views
Data frame to matrix without using reshape
I have a data frame:
set.seed(1234)
mydata <- data.frame(d1=strsplit("AAABBCCCCCDD", "")[[1]],
d2=rnorm(12), d3=c("aba", "bbc", "ccb", "aba", "bbc", "ccb", "aba", "aba", "ccb", "bbc", "aba", ...
3
votes
3answers
61 views
How can I reshape my data.table efficiently
I have a data.table DT
set.seed(1)
DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12))
DT
x y v
1: 1 A 29
2: 1 B 92
3: 1 A 100
4: 1 B 82
5: 2 A 28
6: 2 B 26
...
1
vote
1answer
28 views
how to use kmeans on a hsv matrix
I am trying to use kmeans clustering only on the h matrix (from the original picture) and I am having trouble with the size of the matrix that I use with kmeans. I know that I need to reshape it , but ...
-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 ...
1
vote
1answer
41 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), ...
1
vote
1answer
54 views
Converting 2D cell of 2D matrices (consistent sizes) into 4D matlab double
Searching around here one finds many questions how one can convert cell arrays of doubles into one big matrix.
In my application I have a two dimensional cell array (lets call it celldata of size m ...
2
votes
2answers
57 views
Multi variables in the same plot
I have a data matrix with a 525*95 dimension. The data contains simulated values that I wish to plot in the same graph. This means that I have 95 different variables that all have the same starting ...
3
votes
4answers
155 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 ...
0
votes
1answer
46 views
What is wrong with this Reshape code?
I am trying to reshape this dataframe:
ID tag stemID spcode x y blk plotnum trt date1 dbh1 hom1 codes1 height1 canpos1 liana1 obs1 date2 dbh2 hom2 codes2 height2 ...
1
vote
1answer
36 views
Melt and Recast into a new dataframe in r
I just downloaded a lot of temperature data from one of our dataloggers. The dataframe gives me mean hourly observations of temperature for 1691 hours for 87 temperature sensors (so there is a lot of ...
2
votes
2answers
64 views
R: convert dataframe with multiple columns for months into one continuous time-series
I have read in a .csv file into R in a data.frame object. This object contains a column with year numbers, one with day numbers and the remainder are daily measurements separated into different ...
1
vote
2answers
61 views
Reshape the data in R
I have dataset with the following format. I was trying to do that with reshape2 package in R, but it gives an inappropriate format(binary variables for all pages). Is there any method available that ...
0
votes
0answers
60 views
Doing several cross sectional regression of unbalanced panel data in R
I have an unbalanced panel data set. The following data will do for illustration:
Id <- c(rep(1:4,3),rep(5,2))
Id <- Id[order(Id)]
Year <- c(rep(2000:2002,4),c(2000,2002))
z1 <- ...
1
vote
1answer
46 views
MATLAB reshape matrix converting indices to row index
Is it possible to reshape matrices such that
x1 =
1 5
3 4
4 3
7 1
becomes
x2 =
5
NaN
4
3
NaN
NaN
1
or vice versa, where the first column in ...
2
votes
3answers
108 views
A reshape puzzle in data.table
Yet another reshape problem in data.table
set.seed(1234)
DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12))
# x y v
# 1: 1 A 12
# 2: 1 B 62
...
#11: 3 A 63
#12: 3 B 49
...
3
votes
1answer
62 views
Correct use of a fold or reduce function to long-to-wide data in python or javascript?
Trying to learn to think like a functional programmer a little more---I'd like to transform a data set with what I think is either a fold or a reduce operation. In R, I would think of this as a ...
0
votes
1answer
38 views
Place row values in columns with the corresponding name
I need to change some of my datasets in the following way.
I have one panel dataset containing an unique firm id as identifier (id), the observation year (year, 2002-2012) and some firm variables ...
0
votes
2answers
42 views
Reshape 1xn vector with matlab
Hii i have a vector with a dimension of 1x55 and i want to reshape row by row and get a 11x5 matrix. CAn anyone help me ?
Here´s an example:
A=[1,2,3,4,5,6,7,8,9...55]
after the reshaping
...
1
vote
0answers
42 views
Reshape with factors
I am trying to reshape a data frame that contains a factor and a numeric variable with the melt and cast procedure. The following data shows my problem:
library(reshape)
df <- ...
4
votes
3answers
99 views
Reshape data from long to a short format by a variable, and rename columns
How to do this more elegantly with plyr, reshape2, aggregate function and/or data.table?
library(plyr)
set.seed(1)
x <- data.frame(Ind = paste0("Ind", 1:10), Treatment = ...
0
votes
0answers
17 views
CvReshape using JavaCV
I have this matrix of 90 by 70 and I'm trying to reshape it to 1 by 6300 using Cvreshape.
I'm doing this using javacv so they're no pointers involved here.
It seems like the matrix is initialized to ...
4
votes
1answer
77 views
When I try to melt my data frame with mixed data types, I get NAs. How can I best resolve this?
My goal and context
I have a data frame in R that I want to melt using the reshape2 library. There are two reasons.
I want to plot the score for each user for each question in a bar chart using ...
2
votes
3answers
64 views
Generalized element-wise array replication (each element replicated by a variable size) in MATLAB [duplicate]
There is a similar question here, Element-wise array replication in Matlab, but I'd like to generalize it slightly. The simple case wants a function 'replicate' which would take a vector, a, and then ...
2
votes
2answers
58 views
Converting R Column names into id variables
I'm quite confused and haven't even been able to search for what I'm looking for. I have a multi-year survey on different countries, which is currently like this:
Question Year CountryA ...
0
votes
3answers
58 views
stacking columns into 1 column in R
I have a data frame that looks like:
ID Time U1 U2 U3 U4 ...
1 20 1 2 3 5 ..
2 20 2 5 9 4 ..
3 20 2 5 6 4 ..
.
.
And I would need to keep it like:
ID Time U
1 20 1
1 20 ...
1
vote
0answers
18 views
Is there a built-in way to convert a 1d array to a 2d Array inside IronPython
I am looking for an easy way to reshape an 1D array in IronPython without the usade of NumPy / Scipy for .NET into a 2D Array
I tries to find something similar to Numpy´s 'reshape" function, but so ...
0
votes
1answer
56 views
Pivot table from column to row in excel or R [duplicate]
I have a table with header like this
Id x.1960 x.1970 x.1980 x.1990 x.2000 y.1960 y.1970 y.1980 y.1990 y.2000
I want to pivot this table as
Id time x y
What is the best way to do this in Excel ...
0
votes
3answers
71 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
123 views
MatLab Reshaping Matrix [closed]
The following code is written in order to take in a max x and y value as well as a 'resolution'. I am simply attempting to create matrices to use in creating a mesh. Here is an example of how I want ...
0
votes
3answers
50 views
How to reshape multiple rows to a single row with several columns
This may seem an obvious questions for someone who has practice with reshape package but I'm trying to get use to its functions and I can't figure out the right syntax!
Let's have the following data ...
0
votes
0answers
19 views
image processing reshape
img = double(I2(:,:,2:3));
ro = size(img,1);
co = size(img,2);
img = reshape(img,ro*co,2);
What exactly does this piece of code perform? Does it do data normalization for the image data. But how is ...
0
votes
2answers
85 views
idiomatic way to stack totals plus multiple groupwise results into a single output table
i'm curious if there are faster or more elegant ways to start with this data set..
# generate some fake data
x <- mtcars[ , c( 1 , 2 , 8:11 ) ]
..and construct this table (with overall, gear, ...
2
votes
1answer
55 views
Convert Survival Data from Wide to Long
I am reading http://www.uk.sagepub.com/books/Book233417 and the Rcmdr is used to transform the Rossi data http://cran.r-project.org/doc/contrib/Fox-Companion/Rossi.txt from wide to long for ...
5
votes
3answers
144 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 ...
4
votes
2answers
64 views
how to transform columns to rows in data.frame selectively?
i have such a dataframe:
a1 a2 a3 a4 b c d1 d2 d3 d4
[1] 0 0 1 0 0 0 0 1 0 0
[2] 0 1 0 0 1 0 0 1 0 0
...
i would like to convert it as below, i think reshape wouldn't be useful ...
2
votes
2answers
65 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 ...
1
vote
1answer
58 views
R's reshape() function changes column labels
I want to convert my data from long into wide format. If find it really annoying that reshape changes the column labels, is there any way to avoid that?
For example if I would have data in long ...
0
votes
0answers
53 views
Pandas: use `stack` inplace
in pandas, I have a big DataFrame and I want to use the stack function without having to copy (memory limit):
df = df.stack()
I tried:
df.stack(inline = True)
but it seems not to be implemented.
...
2
votes
2answers
102 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 ...
1
vote
1answer
36 views
Not sure why dcast this data set results in dropping variables
I have a data frame that looks like:
id fromuserid touserid from_country to_country length
1 1 54525953 47195889 US US 2
2 2 54525953 54361607 US ...

