I need matlab cods for this graph I The following table show
I need matlab cods for this graph.
Solution
data=[2.0 3.0;2.3 2.7;3.2 1.2;4.2 2.6;1.2 2.9;5.0 1.0;3.0 2.3];
figure;
bar(data,\'grouped\');
set(gca,\'XTickLabel\',{\'Mon\',\'Tue\',\'Wed\',\'Thu\',\'Fri\',\'Sat\',\'Sun\'});
