statsmodels.emplike.descriptive.DescStatUV.test_var¶
-
DescStatUV.test_var(sig2_0, return_weights=
False
)[source]¶ Returns -2 x log-likelihood ratio and the p-value for the hypothesized variance
Examples
>>> import numpy as np >>> import statsmodels.api as sm >>> random_numbers = np.random.standard_normal(1000)*100 >>> el_analysis = sm.emplike.DescStat(random_numbers) >>> hyp_test = el_analysis.test_var(9500)
Last update:
Oct 03, 2024