Reading column labels in a Matrix
Afficher commentaires plus anciens
I have a 65536x93 dataset with column labels which are numbers. I want to store the column labels in a 1x93 matrix with the labels as numbers which will be used as the x-axis in a plot.
Please help
3 commentaires
the cyclist
le 27 Août 2016
When you say you have a dataset, do you mean that your data are in a MATLAB dataset array? If not, how are your data stored?
Image Analyst
le 27 Août 2016
Most people have switched over to tables now, instead of the deprecated dataset. Can you use a table instead?
Shiladitya Chatterjee
le 27 Août 2016
Réponses (2)
Image Analyst
le 27 Août 2016
If you have a table, you can use the "fieldnames" method:
%%Create Table from Workspace Variables
% Define workspace variables with the same number of rows.
LastName = {'Smith';'Johnson';'Williams';'Jones';'Brown'};
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];
Create a table, T, as a container for the workspace variables.
T = table(Age,Height,Weight,BloodPressure,...
'RowNames',LastName)
table names the variables with the workspace variable names.
f = fieldnames(T)
1 commentaire
Shiladitya Chatterjee
le 27 Août 2016
the cyclist
le 28 Août 2016
Modifié(e) : the cyclist
le 28 Août 2016
putYourDatasetNameHere.Properties.VarNames
For example
load hospital % This is an example dataset pre-loaded in MATLAB
hospital.Properties.VarNames
will display the variable names, and you can also use that to label ticks.
figure
set(gca,'XTickLabel',hospital.Properties.VarNames)
Catégories
En savoir plus sur Axis Labels dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!