爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 4030|回复: 0

[秀图] 柱状图统计执行率

[复制链接]

新浪微博达人勋

发表于 2016-6-2 09:37:38 | 显示全部楼层 |阅读模式

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
clc   
clear
set(gcf,'Position',[50 200 760 550]);%%以台站运行率为横坐标台站名为纵坐标出图使用
pth='E:\runrate\';
dir1=dir([pth  '*.txt' ]);
fnm1={dir1.name};
n=length(fnm1);
for i=1:n
    file=cell2mat(fnm1(i));
    idx=strfind(file,'.');
    par(i).stn=file(idx(1)+1:idx(2)-1);
    fst=[pth file];
    fid=fopen(fst,'r');
         
         while ~feof(fid)
           str=fgets(fid);
         end
           par(i).percent=str2num(str(1:length(str)));                     
end
for j=1:n
    percent(j)=roundn(par(j).percent,-2);
    per(j).per=num2str(percent(j));
    txt(j).txt=[par(j).stn ' (' per(j).per '%)'];
end
if length(percent)==1   
   percent(2)=0;%防止一个柱状图画不出来
end
b=barh(percent,0.2,'b');
Yti=[1:n];
xlim([0 100]);
ylim([0 n+1]);
set(gca,'Ytick',Yti,'YTickLabel',{txt.txt},'FontSize',15);
set(gca, 'XGrid','on');% X轴的网格
xlabel('执行率(%)','fontsize',22)
ylabel('分类号','fontsize',22)
执行率.png

AA.APPLE1.00.Z.txt

4 Bytes, 下载次数: 0, 下载积分: 金钱 -5

AA.APPLE2.00.Z .txt

2 Bytes, 下载次数: 0, 下载积分: 金钱 -5

AA.APPLE3.00.Z.txt

2 Bytes, 下载次数: 0, 下载积分: 金钱 -5

AA.APPLE4.00.Z.txt

4 Bytes, 下载次数: 0, 下载积分: 金钱 -5

AA.APPLE5.00.Z.txt

2 Bytes, 下载次数: 0, 下载积分: 金钱 -5

密码修改失败请联系微信:mofangbao
您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表