Quantile-quantile plot

Quantile-quantile plot with patch option
843 Downloads
Aktualisiert 5 Mai 2018

NOTE: this function is now available from the IoSR Matlab Toolbox as iosr.statistics.qqPlot.
-------------------------
qq_plot(y) displays a quantile-quantile plot of the sample quantiles of y versus theoretical quantiles from a normal distribution. If the distribution of y is normal, the plot will be close to linear.
qq_plot(x,y) displays a quantile-quantile plot of two samples. If the samples come from the same distribution,the plot will be linear.
The inputs x and y should be numeric and have an equal number of elements; every element is treated as a member of the sample.

The plot displays the sample data with the plot symbol 'x'. Superimposed on the plot is a dashed straight line connecting the first and third quartiles.

qq_plot(...,mode) allows the appearance of the plot to be configured. With mode='line' (default), the plot appears as described above. With mode='patch', the data are plotted as a patch object, with the area bound by the x-distribution and the linear fit shaded grey. With mode='both' the two appearances are combined.

qq_plot(...,mode,method) and qq_plot(...,[],method) allows the method for calculating the quartiles, used for the fit line, to be specified. The default is 'R-8'. Type 'help quantile2' for more information. The latter form of the function call uses the default mode.

h = qq_plot(...) returns a two- or three-element vector of handles to the plotted object. The nature of the handles depends upon the mode. In all cases, the first handle is to the sample data, the second handle is to the fit line. With mode='patch' or mode='both', there is third handle to the patch object.

Example

% Display Q-Q plots for the rand and randn functions
figure
subplot(2,1,1)
qq_plot(rand(20),'patch')
subplot(2,1,2)
h = qq_plot(randn(20),'patch');
set(h(3),'FaceColor','r') % change fill colour

Zitieren als

Christopher Hummersone (2024). Quantile-quantile plot (https://github.com/IoSR-Surrey/MatlabToolbox), GitHub. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2012b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!

Versionen, die den GitHub-Standardzweig verwenden, können nicht heruntergeladen werden

Version Veröffentlicht Versionshinweise
1.1.1.0

Migrated to GitHub.
Fixed error caused by new Matlab graphics objects.

1.1.0.0

Added 'method' input for consistency with other functions.

1.0.0.0

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.