我有一个问题,希望你能帮助我。
我在Matlab中导入了一个大型数据集(200000 x 5个单元格),其结构如下:
'Year' 'Country' 'X' 'Y' 'Value'
列1和5包含数值,而列2到4包含字符串。
我想将所有这些信息安排到一个具有以下结构的变量中:
NewVariable{Country_1 : Country_n , Year_1 : Year_n}(Y_1 : Y_n , X_1 : X_n)
我所能想到的就是通过整个数据集循环查找Country
, Year
, X
和Y
变量结合if
和strcmp
函数的名称之间的匹配,但这似乎是实现我想要做的最无效的方式。
正如在评论中提到的,你可以使用分类数组:
% some arbitrary data:
country = repmat('ca',10,1);
country = [country; repmat('cb',10,1)];
country = [country; repmat('cc',10,1)];
T = table(repmat((2001:2005)',6,1),cellstr(country),...
cellstr(repmat(['x1'; 'x2'; 'x3'],10,1)),...
cellstr(repmat(['y1'; 'y2'; 'y3'],10,1)),...
randperm(30)','VariableNames',{'Year','Country','X','Y','Value'});
% convert all non-number data to categorical arrays:
T.Country = categorical(T.Country);
T.X = categorical(T.X);
T.Y = categorical(T.Y);
% here is an example for using categorical array:
newVar = T(T.Country=='cb' & T.Year==2004,:);
table
类就是为这样的事情而设计的,而且非常方便。只需扩展最后一行T.Country=='cb' & T.Year==2004
中的逻辑语句以满足您的需求。告诉我这是否有帮助;)