📖 INDEX
LOADING ENGINE...
stats.normaltest()
AI & DATA SCIENCE // stats-normaltest
Test whether a sample differs from a normal distribution.
Syntax
from scipy.stats import normaltest
res = normaltest(v)Examples
Example 01Basic Usage
from scipy.stats import normaltest
res = normaltest(v)Best Practices
- Refer to SciPy documentation for advanced mathematical methods.
- Ensure your NumPy array types match the required formats for SciPy functions.