Info
This question is closed. Reopen it to edit or answer.
why function name added to table column name?
1 view (last 30 days)
Show older comments
I used sortrow to sort the columns of table and it worked but sortrow is added to each variable name of table.
sortedtable=varfun(@sortrows,KsTable,'GroupingVariables',{'k_name'});
The table before using sortrow:
after using sortrow:
any idea how to fix this?
0 Comments
Answers (1)
Walter Roberson
on 27 Oct 2019
I do not see an option to override that. However you can
sortedtable.Properties.VariableNames = KsTable.Properties.VariableNames;
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!