unstack warnings about variable names

11 views (last 30 days)
alpedhuez
alpedhuez on 5 Jul 2020
Commented: dpb on 6 Jul 2020
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?

Accepted Answer

dpb
dpb on 5 Jul 2020
Edited: dpb on 6 Jul 2020
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 Comments
alpedhuez
alpedhuez on 6 Jul 2020
"A valid variable name starts with a letter, followed by letters, digits, or underscores."
dpb
dpb on 6 Jul 2020
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.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 5 Jul 2020
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.

Categories

Find more on Tables in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!