How do I add the numbers on top of the bar graph?
4 ビュー (過去 30 日間)
古いコメントを表示
file = input("Please enter the name of the data file : ",'s');
[num,txt,raw] = xlsread(file);
amino_names = txt(3:end,1);
atomic_weights = [15.994; 12.01; 14; 32.065; 1.01];
amino_weights = num * atomic_weights;
amino_weights = round(amino_weights,2);
disp("**** The report is ready ****");
T = table(amino_names,amino_weights);
T.Properties.VariableNames = {'Amino Acid','Molecular Weight'};
disp(T)
bar(amino_weights)
ylabel("Molecular Weights")
title("Molecular weights for different amino acids")
xticks(1:length(amino_names))
xticklabels(amino_names)
xtickangle(90)
% How do I add the numbers on top of the bar graph?
% Thank you!
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!