Is it posible to create a Probability Paper ??

How can I create a plot, that looks similar to the shown plot ?
My currentt code is as shown:
time = [1:20];
wind = [19.97 20.17 19.41 19.94 20.63 21.97 19.92 22.99 23.60 19.90 ...
20.04 22.39 20.01 23.40 20.75 23.27 21.78 21.01 21.30 21.05];
wind = sort(wind);
figure()
semilogy(wind,f_rel,'b+'); hold on
% Turn on the grid
grid on
xlabel('Extream wind velocities [m/s]')
ylabel('Annual probability of non-exceedance [%]')
title('')
xlim([18 25])
hold on
a2 = axes('YAxisLocation', 'Right')
% Hide second plot.
set(a2, 'color', 'none')
set(a2, 'XTick', [])
% Set scala for second Y.
set(a2, 'YLim', [0 1])
set(gca,'Yticklabel',{'5','8','11','14','17','20','23'});
ylabel(a2,'Return period [year]')

Risposte (1)

Star Strider
Star Strider il 12 Nov 2017
See the documentation for the Statistics and Machine Learning probplot function.

Richiesto:

il 12 Nov 2017

Risposto:

il 12 Nov 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by