MATLAB: How to plot the following table

plottable

I have created the following table with the following data. How can I plot these data effectively?
T = table({'Layer1';'Layers2';'Layers3';'Layers4';'Layers5';'Layers6';'Layers7';'Layers8';'Layers9';'Layers10';'Layers11';'Layers12';'Layers13'},...
[68.1;69.7;67.0;72.0;71.3;74.2;73.2;72.9;74.2;73.0;74.1;73.3;74.6],...
[61.0;66.0;63.7;65.0;67.8;71.1;68.6;71.0;63.2;71.6;71.8;70.1;70.0],...
[63.5;70.5;72.4;71.4;74.0;73.0;74.0;72.3;74.8;73.8;73.8;74.1;74.5],...
[67.0;68.4;70.0;71.5;72.5;73.8;73.5;72.2;72.8;74.2;74.0;73.1;73.7],...
[61.0;69.2;68.4;72.1;71.0;74.2;71.7;73.5;74.0;72.3;74.6;74.3;74.3],...
[68.0;67.1;71.2;71.1;71.5;72.6;73.0;73.6;73.5;73.0;73.7;74.1;74.9],...
[66.0;69.5;69.7;70.5;72.5;74.1;74.3;73.5;72.1;74.1;74.2;74.4;74.9],...
[64.4;68.4;69.1;69.4;70.5;72.3;73.8;74.3;74.4;74.8;73.7;74.0;74.8],...
[66.0;67.0;70.7;73.0;67.0;71.5;73.2;72.0;71.5;73.4;72.5;74.8;74.6]);
T.Properties.VariableNames = {'sym4sym8','smooth','rms','stft','haar','db8','bior1.3','bior2.2','coif3','coif4'};
Thanks in advance!

Best Answer

I doubt that there is any effective way to plot 13 dimensional scattered data.
Perhaps a stacked barchart would be useful. Or possibly a ribbon plot.