/usr/share/pyshared/statsmodels/nonparametric/lowess.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 | import warnings
warnings.warn('the module lowess is deprecated and will be removed in 0.5.'
'The new module name is smoothers_lowess, and lowess (function)'
'can be imported now through statsmodels.api')
from smoothers_lowess import *
|