How can I plot a Pareto Chart (Y-axis= Qty VS. X-axis = Part Description) for the attached Excel data table?
3 次查看(过去 30 天)
显示 更早的评论
How can I plot a Pareto Chart (Y-axis= Qty VS. X-axis = Part Description) for the attached Excel data table? Thanks in advance. Sarath J
2 个评论
dpb
2018-9-11
Have you looked at
doc readtable
doc pareto
? If so, where, specifically, did you find a problem?
采纳的回答
dpb
2018-9-11
A={1 30 'ARD';
2 25 'CDE';
3 22 'BTS';
4 10 'RSD';
5 5 'TSE';
6 4 'DMP';
7 3 'MTR';
8 1 'BAC';
9 1 'BAD'};
t=cell2table(A);
pareto(t.A2,t.A3)
seemed to work just fine. You can't put double numeric data and text together in an "ordinary" array with []; disparate data types must go into a cell array or table.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multiobjective Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!