unstack warnings about variable names

9 ビュー (過去 30 日間)
alpedhuez
alpedhuez 2020 年 7 月 5 日
コメント済み: dpb 2020 年 7 月 6 日
I ran
unstack
and got
Warning: Table variable names that were not valid MATLAB identifiers have been modified. Since table variable names must be unique, any table variable names that happened to match the new identifiers also have been modified.
To use the original INDVAR values as table variable names, set 'VariableNamingRule' to 'preserve'.
What does it mean?

採用された回答

dpb
dpb 2020 年 7 月 5 日
編集済み: dpb 2020 年 7 月 6 日
Just what is says... :)
Your table (or timetable) contained data values that were not valid to be used as MATLAB variable names (that means NOT beginning w/ number, having embedded blanks, etc., etc.,...) Prior to R2019b (I believe was the introduction) table variable names had to follow same rules as "real" variables.
You either must upgrade to get the new functionality or accept the modified names or change them to something you like better than the machine-generated ones.
Also, if there are duplicated values, that's a no-no -- cannot have two columns with the same variable name--and that rule hasn't gone away and can't go away.
Since we don't have a klew what your data looked like, that's about the best we can do on specifics...
  2 件のコメント
alpedhuez
alpedhuez 2020 年 7 月 6 日
"A valid variable name starts with a letter, followed by letters, digits, or underscores."
dpb
dpb 2020 年 7 月 6 日
Yes, I see I mistyped what I intended above -- leaving out the "NOT" in front of "beginning w/" which definitely changes the meaning and is, of course, wrong besides. Didn't notice that until just now--made the correction.

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2020 年 7 月 5 日
Using your table's name, what does this say if you stop there and type this into the command window.
yourTableName.Properties.VariableNames
It should spit your table's columns names to the command window. What does it say?
Attach your table in a .mat file if you need more help.

カテゴリ

Help Center および File ExchangeTables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by