Reshape matrix (panel data)

조회 수: 1 (최근 30일)
Thomas Leirvik
Thomas Leirvik 2013년 11월 5일
댓글: Thomas Leirvik 2013년 11월 5일
I have a matrix with N individual stocks with up to T observations each. The matrix has four columns: column one describes time, ranging from 1:T, column two describes the individual from 1 to N, column three describes weight of individual i at time t, and column four describes price of individual i at time t. (The data is downloaded from CRSP into Stata, but I'd like to apply MatLab for the next step of the analysis)
The thing is that not all individuals has observations from 1 through T, but may start at t=10, or end at t=T-k (for some number k).
If I had observations for all individual at all times, I would've used B=reshape(data,T,4*N).
Does anybody have any suggestion for how to deal with this problem?
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2013년 11월 5일
To make your question clear, just give a numeric example, and show what you are expecting as result. It's not important to know if your variable is a speed or a flow.
Thomas Leirvik
Thomas Leirvik 2013년 11월 5일
Thanks for the reply!
I have A = [1 1 0.5 3; 2 1 0.25 2; 1 2 0.5 10; 2 2 0.5 11; 2 3 0.25 6];
and I want
B = [0.5 0.5 0 3 10 0; 0.25 0.5 0.25 2 11 6]
This means that in A, column 1 describes time, for which I have observations of individual 1 and 2, but not 3. Column 2 describes individual. Column 3 describes weights (which sum to 1 for each time-step) and column 4 describes prices at time t.

댓글을 달려면 로그인하십시오.

채택된 답변

Kelly Kearney
Kelly Kearney 2013년 11월 5일
Might this function help: vec2grid?
  댓글 수: 3
Kelly Kearney
Kelly Kearney 2013년 11월 5일
Using your example from above:
a = [1 1 0.5 3; 2 1 0.25 2; 1 2 0.5 10; 2 2 0.5 11; 2 3 0.25 6];
[row, col, price] = vec2grid(a(:,[1 2 4]));
[row, col, weight] = vec2grid(a(:,[1 2 3]));
>> [weight price]
ans =
Columns 1 through 5
0.5 0.5 NaN 3 10
0.25 0.5 0.25 2 11
Column 6
NaN
6
Looks like your B, except using NaN instead of 0 as a placeholder, which is a quick fix.
B = [weight price];
B(isnan(B)) = 0;
Thomas Leirvik
Thomas Leirvik 2013년 11월 5일
Wow, it works smooth! Fantastic! Thanks!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by