Plot: Probability: Probability Plot
Plot: Probability: Q-Q Plot
Create probability or Q-Q plot using specified distribution
Minimum Origin Version Required: 8.1 SR0
1. plot_prob -r 1 irng:=[QQplot1]"Q-Q plot"!B"Weight" method:=renard;
2. plot_prob irng:=[ProbPlot]Sheetl!A distr:=weibull;
Please refer to the page for additional option switches when accessing the x-function from script
Display Name |
Variable Name |
I/O and Type |
Default Value |
Description |
---|---|---|---|---|
Input Data | irng |
Input Range |
|
The input data range. |
option |
Input int |
|
This variable is not used for user. | |
Distribution | distr |
Input int |
|
Specify a distribution type. Option List:
|
Estimate from Data | estimate |
Input int |
|
Specify whether to estimate distribution parameters from input data. If not, parameters can be specified manually. Default is checked. |
Location | location |
Input double |
|
mu: Mean of the normal distribution. shape: Shape of the specified distribution. Available in both Lognormal, Weibull and Gamma distributions. scale |
Scale | scale |
Input double |
|
sigma: Standard deviation of Normal distribution. Scale: Scale of the specified distribution. Available in Lognormal, Exponential, Weibull and Gamma distributions. |
Score Method | method |
Input int |
|
Select a method for plotting percentile approximations. Option List:
|
Confidence Band | conf |
Input int |
|
Specify whether to output the confidence band in probability plot. Default is checked. |
Confidence Level(%) | level |
Input double |
|
Only available when conf is selected. Specify the confidence level in % for the chosen distribution. |
Exchange X-Y Axes | exchange |
Input int |
|
Specify whether to switch X and Y axis positions. |
X Minimum | xmin |
Input double |
For information on calculation of Auto value, see the Origin Help File. | |
X Maximum | xmax |
Input double |
For information on calculation of Auto value, see the Origin Help File. | |
Output Range | rd |
Output ReportData |
|
Specify where the calculated data for the graph is stored. |
For detailed information about this X-Function, please refer to our User Guide Probability Plot and Q-Q Plot
Note: in Origin 2017 or ealier versions, this X-Function is not accessible from LabTalk script. To plot PP plot/QQ plot from script, you will need to use
worksheet -px
For example,
//to plot a probability plot worksheet -px ? PPNormal plot_prob option:=0; //to plot a Q-Q plot worksheet -px ? QQ plot_prob option:=1;
Keywords:normal, lognormal, exponential, weibull, gamma