我试图从概率图句柄中检索实际的y轴数据(概率%),但没有得到所需的值,而是得到了分位数值
% sample data
data =[68391;54744;54682;71629;42610;54371;37500;41222;39767;65042;54706;15108;57000;55460;73360]';
% obtain the probability plot for data
h1=probplot('lognormal',data,'noref');
% retrieve the y axis data from h1
[sorted_data, indices]= sort(data);
prob(indices)=h1.YData;
% the prob values are not the actual probability values that we see in the
% plot but quantile values , how to directly retrive the probabaility
% values
我想我们在图中看到的概率值。检查上面示例代码中的prob向量值
1条答案
按热度按时间bjg7j2ky1#
y轴上显示的概率基于分位数的*正态累积密度函数**(
normcdf()
)。情节
检索概率的代码
一米一米一