This file is indexed.

/usr/share/pyshared/statsmodels/stats/api.py is in python-statsmodels 0.4.2-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import diagnostic
from .diagnostic import (
            acorr_ljungbox, acorr_breush_godfrey,
            CompareCox, compare_cox, CompareJ, compare_j,
            HetGoldfeldQuandt, het_goldfeldquandt,
            het_breushpagan, het_white, het_arch,
            linear_harvey_collier, linear_rainbow, linear_lm,
            breaks_cusumolsresid, breaks_hansen, recursive_olsresiduals,
            unitroot_adf,
            normal_ad, lillifors
            )

import multicomp
from .multitest import (multipletests, fdrcorrection, fdrcorrection_twostage)
from .multicomp import tukeyhsd
import gof
from .gof import powerdiscrepancy, gof_chisquare_discrete
import stattools
from .stattools import durbin_watson, omni_normtest, jarque_bera

import sandwich_covariance
from .sandwich_covariance import (
            cov_cluster, cov_cluster_2groups, cov_nw_panel,
            cov_hac, cov_white_simple,
            cov_hc0, cov_hc1, cov_hc2, cov_hc3,
            se_cov
            )

from weightstats import DescrStatsW

from descriptivestats import Describe