Image:Probit plot.png
From Wikipedia, the free encyclopedia

No higher resolution available.
Probit_plot.png (640 × 480 pixels, file size: 15 KB, MIME type: image/png)
[edit] Summary
Plot of the probit function
. I created this image myself with the following Python code:
from matplotlib.pylab import *
from scipy.special import erfinv
def probit(p): return sqrt(2)*erfinv(2*p-1)
x_i = arange(0.0001, 0.9999, 0.001)
plot(x_i, probit(x_i), 'r')
xlabel('probability')
ylabel('probit')
grid(True)
xticks(arange(0, 11)/10.0)
savefig('image.png', dpi=80)
[edit] Licensing
| I, the copyright holder of this work, hereby release it into the public domain. This applies worldwide. In case this is not legally possible, |
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Dimensions | User | Comment | |
|---|---|---|---|---|
| current | 14:54, 12 January 2007 | 640×480 (15 KB) | Coffee2theorems (Talk | contribs) | (Updated the plot by omitting axis labels because the article is about the probit function, whose definition as such does not include units. The plot in article on logit does not have any labels either.) |
| 13:43, 23 July 2006 | 640×480 (17 KB) | Coffee2theorems (Talk | contribs) | (Plot of the probit function <math>\sqrt{2}\,\operatorname{erf}^{-1}(2p-1)</math>. I created this image myself with the following Python code: <pre> from matplotlib.pylab import * from scipy.special import erfinv def probit(p): return sqrt(2)*erfinv(2*p-1) |
- Search for duplicate files
- Edit this file using an external application
See the setup instructions for more information.
File links
The following pages on the English Wikipedia link to this file (pages on other projects are not listed):

