Skip to main content

Sklearn compatible implementation of the Locally Estimated Scatterplot Smoothing (LOESS) algorithm

Project description

skloess

PyPI version

scikit-learn compatible implementation of the Locally Estimated Scatterplot Smoothing (LOESS) algorithm .

The code for the python version of loess is based on https://github.com/joaofig/pyloess

References:

How to install

Install with pip:

pip install skloess

Dependencies

  • numpy
  • math
  • scikit-learn
  • matplotlib
  • pytest for running the test suite

How to use

Download, import and do as you would with any other scikit-learn method:

  • fit(X, y)
  • predict(X)

Keep in mind that the model requires 1-dimensional input, i.e. a list/array/pandas series for both X and y. X and y must have the same length.

Description

An excellent explanation of the pyloess code can be found at https://towardsdatascience.com/loess-373d43b03564. This package simply formats the pyloess code into a sklearn estimator.

Parameters

estimator : object

A supervised learning estimator, with a 'fit' and 'predict' method.

degree : int, default = 1

Degree of the polynomial. Default value of 1 is a linear implementation.

smoothing : float, default = 0.33

Smoothing value. This value is used to determine the number of closest points to use for the fitting and estimation process. For example, a value of 0.33 over 21 X values means that 7 closest points will be chosen. The smoothing parameter is a number between (λ + 1) / n and 1, with λ denoting the degree of the local polynomial and n denoting the total number of observations.

alt text

Examples

from skloess import LOESS

# load X and y

X = np.array(
    [
        0.5578196,
        2.0217271,
        2.5773252,
        3.4140288,
        4.3014084,
        4.7448394,
        5.1073781,
        6.5411662,
        6.7216176,
        7.2600583,
        8.1335874,
        9.1224379,
        11.9296663,
        12.3797674,
        13.2728619,
        14.2767453,
        15.3731026,
        15.6476637,
        18.5605355,
        18.5866354,
        18.7572812,
    ]
)
y = np.array(
    [
        18.63654,
        103.49646,
        150.35391,
        190.51031,
        208.70115,
        213.71135,
        228.49353,
        233.55387,
        234.55054,
        223.89225,
        227.68339,
        223.91982,
        168.01999,
        164.95750,
        152.61107,
        160.78742,
        168.55567,
        152.42658,
        221.70702,
        222.69040,
        243.18828,
    ]
)


# define estimator with default params
est = LOESS(degree=1, smoothing=0.33)

#fit the estimator
est.fit(X, y)

# predict the y values for the original X values
predicted=est.predict(X)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

skloess-0.1.3.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

skloess-0.1.3-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file skloess-0.1.3.tar.gz.

File metadata

  • Download URL: skloess-0.1.3.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.10

File hashes

Hashes for skloess-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e458b01715bec15a22ef2639ef823f1903d45187e1fcd624f2f311327f127539
MD5 34e7be8df483c0a569cd7c1cd888df03
BLAKE2b-256 777afac3af61b22b88f20edfa495d790677df8bfc2341d6484ace9f486b12595

See more details on using hashes here.

File details

Details for the file skloess-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: skloess-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.10

File hashes

Hashes for skloess-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8b32cb4eda062a0a189b78d27d8a63966a1e371745da0713bb36542b8112994d
MD5 45224ff17432b27a33838696d5252aeb
BLAKE2b-256 2c02485b099bd27061ab6267a8dfbfad0fe40808752083b6437511ddf3370a4c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page