Is there a simpler way to create an empty Table with a list of VariableNames?

659 ビュー (過去 30 日間)
Andrei Makarskiy
Andrei Makarskiy 2015 年 9 月 20 日
編集済み: Dan 2025 年 2 月 17 日 14:27
I had to find a long long way around to solve this simple task.
optionsChange = cell2table(cell(0,9));
optionsChange.Properties.VariableNames{'Var1'}='Exp';
optionsChange.Properties.VariableNames{'Var2'}='Strike';
optionsChange.Properties.VariableNames{'Var3'}='Put_Mark';
optionsChange.Properties.VariableNames{'Var4'}='Put_Ask';
optionsChange.Properties.VariableNames{'Var5'}='Put_Bid';
optionsChange.Properties.VariableNames{'Var6'}='Put_Delta';
optionsChange.Properties.VariableNames{'Var7'}='Put_ImplVol';
optionsChange.Properties.VariableNames{'Var8'}='Date';
optionsChange.Properties.VariableNames{'Var9'}='DateNM';
Isn't there a nicer way to do it? Matlab really gets on my nerv after PHP and VBA

採用された回答

Walter Roberson
Walter Roberson 2015 年 9 月 20 日
編集済み: Walter Roberson 2021 年 6 月 3 日
optionsChange = cell2table(cell(0,9), 'VariableNames', {'Exp', 'Strike', 'Put_Mark', 'Put_Ask', 'Put_Bid', 'Put_Delta', 'Put_ImplVol', 'Date', 'DateNM'});
  4 件のコメント
Steven
Steven 2019 年 10 月 21 日
編集済み: per isakson 2021 年 6 月 4 日
This answer is poor quality
Gabor
Gabor 2021 年 2 月 25 日
Sorry guys, but creating a table in matlab should be lot more simple.
First off why cant we create an empty table with column names?

サインインしてコメントする。

その他の回答 (4 件)

Peter Perkins
Peter Perkins 2015 年 9 月 21 日
Andrei, Walter's solution works, as would
optionsChange = array2table(zeros(0,9), 'VariableNames',{...});
or even
optionsChange = array2table(zeros(0,9));
optionsChange.Properties.VariableNames = {...};
(Both of those have the advantage that they create 0x1 variables in the table, rather than 0x0, and so if you subsequently do something like
>> optionsChange.Exp(2) = 2
optionsChange =
Exp Strike Put_Mark Put_Ask Put_Bid Put_Delta Put_ImplVol Date DateNM
___ ______ ________ _______ _______ _________ ___________ ____ ______
0 0 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0 0
everything will grow in the vertical direction.)
BUT: based on your variable names, you may not end up what you're ultimately looking for. The problem is that "create an empty table" isn't really fully specified. It's kind of like saying, "create an empty variable". The question left unanswered is, what type of variables do you want in that table? The answer might be "all doubles", but it might not. The above all create nine double variables in the table, but your last two variable names indicate dates. If you're using datenums, you're fine (datenums are are just doubles, but if you want date strings, or datetimes, you'll have to either start out with the right thing, or overwrite the doubles in the table that you want to be dates. For example,
>> vnames = {'Exp', 'Strike', 'Put_Mark', 'Put_Ask', 'Put_Bid', 'Put_Delta', 'Put_ImplVol', 'Date', 'DateNM'};
>> optionsChange = array2table(zeros(0,9), 'VariableNames',vnames);
>> optionsChange.Date = datetime(zeros(0,3)); % simple way to get a 0x1 datetime
>> optionsChange.DateNM = datetime(zeros(0,3));
>> summary(optionsChange)
Variables:
Exp: 0x1 double
Strike: 0x1 double
Put_Mark: 0x1 double
Put_Ask: 0x1 double
Put_Bid: 0x1 double
Put_Delta: 0x1 double
Put_ImplVol: 0x1 double
Date: 0x1 datetime
DateNM: 0x1 datetime
And finally, as is the case with any kind of variable in MATLAB, instead of creating an empty then growing it row by row, you might consider creating a table that's the right size but filled with NaNs and empty strings or whatever. For example,
optionsChange = array2table(nan(0,9));
That may be faster in the long run, because it doesn't have to keep reallocating memory as the table grows. That may or may not be useful or even possible in your case, just a suggestion.
Hope this helps.
  5 件のコメント
Walter Roberson
Walter Roberson 2017 年 7 月 21 日
Lachlan Noller: the easiest thing is to round the numbers before putting them in the table.
Peter Perkins
Peter Perkins 2017 年 7 月 21 日
Also, they may already be rounded, and what you're seeing is just the shortg display. Perhaps just set your command window to use the longg format.

サインインしてコメントする。


Markus de Ruijter
Markus de Ruijter 2020 年 3 月 27 日
編集済み: Markus de Ruijter 2020 年 3 月 27 日
I know this is an old question but I usually do the following to initialise a new empty table:
% Make N by 2 matrix of fieldname + value type
variable_names_types = [["id", "double"]; ...
["x", "double"]; ...
["y", "double"]; ...
["time", "double"]; ...
["type", "string"]; ...
["description", "string"]];
% Make table using fieldnames & value types from above
my_table = table('Size',[0,size(variable_names_types,1)],...
'VariableNames', variable_names_types(:,1),...
'VariableTypes', variable_names_types(:,2));
I think this is quite readable and allows you to add value types.
  4 件のコメント
Paolo Mazzoleni
Paolo Mazzoleni 2022 年 10 月 12 日
this is useful for what I'm doing, but what should I use as variable type if I want let's say "x" to be an array of 2 double?
thanks
Walter Roberson
Walter Roberson 2022 年 10 月 12 日
When individual entries are non-scalar, you have to use "cell" for the type, with the exception of "char".

サインインしてコメントする。


Ilya Gurin
Ilya Gurin 2021 年 5 月 20 日
Good solutions, everyone, but why isn't this functionality available through table? Usually, the data type conversion functions are used when you have already created data as one type and want to convert it to another. I don't see why this:
array2table(zeros(0,9), 'VariableNames',{...});
can't look like this:
table('VariableNames',{...});
  10 件のコメント
Walter Roberson
Walter Roberson 2021 年 6 月 3 日
I don't accept the point about a "sanity check."
Then you should be using a different programming language. MATLAB is full of sanity checks. MATLAB is specifically designed for people who are not expert programmers: people who cannot be counted upon to only work with values that are "sane" from the point of view of the programming language. People who do not use good programming practices themselves.
In context, putting in sanity checks to detect problems early is good programming practice, for what MATLAB is intended for. MATLAB's goal of efficiency is secondary to MATLAB's goal to make the software accessible to users who are to be expected to make a lot of mistakes.
Ilya Gurin
Ilya Gurin 2021 年 6 月 3 日
1) I'm all for certain kinds of sanity checks. I've spent hours fixing Code Analyzer ("m-lint") warnings, in my own code and especially other people's code. I just don't think the particular feature of requiring a Size argument when creating a table is a useful sanity check. And, in fact, your own code sample defeats such sanity-checking as may exist.
2) If the goal is to make software accessible to non-experts who make a lot of mistakes, I posit that requiring a Size parameter and a list of VariableNames that can get out of sync is contrary to that goal.

サインインしてコメントする。


Markus Leuthold
Markus Leuthold 2023 年 4 月 25 日
Mathworks, please allow
tbl = table("VariableNames", ["var1" "var2"....]);
and avoid ugly hacks like array2table(zeros(0... or cell2table(cell(0,....)
  3 件のコメント
Walter Roberson
Walter Roberson 2023 年 4 月 25 日
As discussed in https://www.mathworks.com/matlabcentral/answers/244084-is-there-a-simpler-way-to-create-an-empty-table-with-a-list-of-variablenames#answer_422250 you can already table() indicating varible names, table size, and variable types, without needing to convert zeros() or cell()
Dan
Dan 2025 年 2 月 17 日 14:24
編集済み: Dan 2025 年 2 月 17 日 14:27
MATLAB precludes creating a table with just variable names to preclude the need for subsequent dynamic resizing of the table. If MATLAB allows:
tbl = table("VariableNames", ["var1","var2"]);
and makes the assumption that you want your data to be of type double, the next think you'll want to do is this:
tbl.var1 = ["a","b","sdf"]';
which MATLAB does not allow either as it would require the resizing of all the other variables in the table simultaneously as well as retyping the variable var1. Very expensive. This is allowed with a structure but there is no enforcing that the number of parameters is the same for all the other fields. With a structure, you could go with a nonscalar structure to enforce sameness for number of elelments across all fields, but there is a lot of overhead associated with resizing for that too. Maybe one of the reasons that MATLAB made tables was to enforce better efficiency than you'd get with structures?
Bottom line ... you have to go through all the work to generate the data that is going to populate your table, either before or after creating the table. MATLAB wants you to do it in advance to reduce overhead associated with resizing and retyping.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by