To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

File:Student t cdf.svg

From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 360 × 288 pixels, file size: 35 KB)

Summary

Description
Plot of the cumulative distribution functions of several members of the Student t-family of probability distributions.
Date
Source Own work
Author Skbkekas
SVG development
InfoField
 
The SVG code is valid.
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import numpy as np
import matplotlib.pyplot as plt
import scipy.special as sp
import scipy.integrate as integral
 
col = ['orange', 'purple', 'deepskyblue']
 
X = np.arange(-5, 5, 0.005)
 
plt.clf()
plt.figure(figsize=(4,3.2))
plt.axes([0.17,0.13,0.79,0.8])
plt.hold(True)
 
A = []

def PDF(x,nu):
	Y = -(nu+1)*np.log(1+x**2/nu)/2
	Y += sp.gammaln((nu+1)/2.0)
	Y -= sp.gammaln(nu/2.0)
	Y -= 0.5*np.log(nu*np.pi)
	Y = np.exp(Y)
	return Y

for k,nu in enumerate([1,2,5]):
	Y=[]
	for x in X:
		Y.append(integral.quad(lambda t: PDF(t,nu),-1000,x))
	a = plt.plot(X, Y, '-', color=col[k], lw=1.5)
	A.append(a)

# Degenerate into Normal distribution
from scipy.stats import norm
Y = norm.cdf(X)
a = plt.plot(X, Y, '-', color='black', lw=1.5)
A.append(a)
 
plt.xlabel("x")
plt.ylabel(u"P(X\N{Less-THAN OR EQUAL TO}x)")

bx = plt.legend(A, (r"$\nu=1$", r"$\nu=2$", r"$\nu=5$", r"$\nu=+\infty$"),\
                numpoints=1, handlelen=0.05, handletextpad=0.4,\
                loc="lower right")
bx.draw_frame(False)
plt.xlim(-5,5)
 
plt.savefig("student_t_cdf.pdf")
plt.savefig("student_t_cdf.eps")
plt.savefig("student_t_cdf.svg")

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution
This file is licensed under the Creative Commons Attribution 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

22 February 2010

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current23:37, 3 April 2014Thumbnail for version as of 23:37, 3 April 2014360 × 288 (35 KB)Hydroxfixed colours (hand-edited SVG)
07:58, 21 July 2013Thumbnail for version as of 07:58, 21 July 2013360 × 288 (35 KB)IkamusumeFanAdjust the axis for better display.
07:51, 21 July 2013Thumbnail for version as of 07:51, 21 July 2013360 × 288 (35 KB)IkamusumeFan1. Using \nu instead of df, which appears in Scipy's documentation; 2. Since for some operating systems and Python versions, Scipy's stdtr function has visible errors around t=+1 and -1, we adjust the computation of CDF according to the integral defini...
15:42, 4 March 2010Thumbnail for version as of 15:42, 4 March 2010360 × 288 (28 KB)SkbkekasChanged df's to give better spacing, used thinner lines.
04:11, 23 February 2010Thumbnail for version as of 04:11, 23 February 2010360 × 288 (27 KB)Skbkekas{{Information |Description={{en|1=Plot of the cumulative distribution functions of several members of the Student t-family of probability distributions.}} |Source={{own}} |Author=Skbkekas |Date=2010-02-22 |Permission= |other_versions= }}
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Global file usage

The following other wikis use this file:

Metadata

Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.