This file is indexed.

/usr/lib/python2.7/dist-packages/statsmodels/info.py is in python-statsmodels 0.8.0-6.

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
"""
Statistical models

 - standard `regression` models

  - `GLS` (generalized least squares regression)
  - `OLS` (ordinary least square regression)
  - `WLS` (weighted least square regression)
  - `GLASAR` (GLS with autoregressive errors model)

 - `GLM` (generalized linear models)
 - robust statistical models

  - `RLM` (robust linear models using M estimators)
  - `robust.norms` estimates
  - `robust.scale` estimates (MAD, Huber's proposal 2).
 - sandbox models
  - `mixed` effects models
  - `gam` (generalized additive models)
"""
__docformat__ = 'restructuredtext en'

depends = ['numpy',
        'scipy']

postpone_import = True