pyloess icon indicating copy to clipboard operation
pyloess copied to clipboard

loess smoother / stl seasonal trend decomposition, originally from scipy.sandbox.pyloess

Results 6 pyloess issues
Sort by recently updated
recently updated
newest added

According to documentation in the files, class loess is able to handle multi-dimensional features: loess = _loess.loess """ loess : locally weighted estimates. Multi-variate version :Keywords: x : ndarray A...

Hi, I don't understand how to use masked arrays with stl. import numpy as np import numpy.ma as ma from pyloess.mpyloess import stl y = np.array([1,12,5,3,5,6]) yma = ma.masked_array(y, mask=[0,0,1,0,0,0])...

Hi @andreas-h, I am developing an open-source biomedical (genomic) data analysis tool, and I need pyloess for fitting data and calculating standard errors. Now I have to install pyloess in...

Hi, I did sudo python3 setup.py install but many errors occured in file "src/_loess.c" The file seems to be automatically generated and is very outdated: /* Generated by Pyrex 0.9.5.1a...

Hi There, I have downloaded the pyloess package. I have run `python setup.py build` and `python setup.py install` When I type `import pyloess` in the python console, I got `ImportError:...

I rearranged folder structure to avoid some annoying problems discussed [here](https://github.com/andreas-h/pyloess/issues/1).