Curriculum
Course: NumPy
Login

Curriculum

NumPy

Text lesson

Chi Square Distribution

The Chi-Square distribution is used as a foundation for hypothesis testing. It has two key parameters:

df (degrees of freedom): Specifies the number of independent variables.

size: Defines the shape of the returned array.

Example

Generate a sample from the Chi-Square distribution with 2 degrees of freedom and a size of 2×3.

from numpy import random

x = random.chisquare(df=2, size=(23))

print(x)

Visualization of Chi Square Distribution

Example

from numpy import random
import matplotlib.pyplot as plt
import seaborn as sns

sns.distplot(random.chisquare(df=1, size=1000), hist=False)

plt.show()

Result

chisquare1