Skip to content

Latest commit

 

History

History
111 lines (77 loc) · 1.42 KB

File metadata and controls

111 lines (77 loc) · 1.42 KB

Note

Installation instructions are available for:


R

From R-universe:

install.packages("rfastlowess", repos = "https://thisisamirv.r-universe.dev")

Or from conda-forge:

conda install -c conda-forge r-rfastlowess

Python

From PyPI:

pip install fastlowess

Or from conda-forge:

conda install -c conda-forge fastlowess

Rust (lowess, no_std compatible)

From crates.io:

[dependencies]
lowess = "1.1"

Rust (fastLowess, parallel + GPU)

From crates.io:

[dependencies]
fastLowess = { version = "1.1", features = ["cpu"] }

Julia

From General Registry:

using Pkg
Pkg.add("FastLOWESS")

Node.js

From npm:

npm install fastlowess

WebAssembly

From npm:

npm install fastlowess-wasm

Or via CDN:

<script type="module">
  import init, { smooth } from 'https://unpkg.com/fastlowess-wasm@latest';
  await init();
</script>

C++

From source:

make cpp
# Links against libfastlowess_cpp.so

Or from conda-forge:

conda install -c conda-forge libfastlowess