Adding a unit row to a table

85 views (last 30 days)
Leon
Leon on 17 Aug 2020
Edited: Leon on 19 Aug 2020
Below is how I normall create my table in Excel:
TT = table(Year, Month, Day, Longitude, Latitude, Oxygen, Chlorophyll_A);
writetable(TT, 'test.xlsx');
The issue is that my community wants the units to appear in a separate row, so that the final Excel file will look like this:
Row #1: Year Month Day Longitude Latitude Oxygen Chlorophyll_A
Row #2: N/A N/A N/A decimal_degrees decimal_degrees umol/kg ug/L
Row #3: 2005 3 12, -120 25 206 3.7
...
and so on
My question is how do I modify my above program so that I could add an extra unit row (2nd Row in the Excel file) when using writetable?
Many thanks!
  1 Comment
Michael Soskind
Michael Soskind on 19 Aug 2020
Hi Leon,
Looks like this question has been discussed previously, and although there is no solution with how to truly display the variables as another row, or next to the table header row, there is a way to set the property of the values within that row. That does not help you, but that is discussed here.
Best,
Michael

Sign in to comment.

Accepted Answer

Sindar
Sindar on 19 Aug 2020
% create example table
T = array2table(magic(3),"VariableNames",["a";"b";"c"]);
% define units
T.Properties.VariableUnits = ["m";"kg";"N"];
% print the variable names in the first row
writecell(T.Properties.VariableNames,'units_please.xlsx','Range',"A1")
% print the units in the second row
writecell(T.Properties.VariableUnits,'units_please.xlsx','Range',"A2")
% print the data starting in the third row
writetable(T,'units_please.xlsx',"Range","A3","WriteVariableNames",false)
  2 Comments
Sindar
Sindar on 19 Aug 2020
A limited function. You could try adding varargin and parsing the normal writetable arguments to figure out where to start the printing
function write_table_with_units(T,filename)
% print the variable names in the first row
writecell(T.Properties.VariableNames,filename,'Range',"A1")
% print the units in the second row
writecell(T.Properties.VariableUnits,filename,'Range',"A2")
% print the data starting in the third row
writetable(T,filename,"Range","A3","WriteVariableNames",false)
end
Leon
Leon on 19 Aug 2020
Edited: Leon on 19 Aug 2020
Awesome! Thank you so much.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!