abstractqqq / polars_ds_extension

Polars extension for general data science use cases
MIT License
263 stars 17 forks source link

Add PCA #117

Closed abstractqqq closed 2 months ago

abstractqqq commented 3 months ago

Now that we have the diagnosis module, adding PCA is justified as it is an important step when inspecting data.

Plan is to have a Rust function that takes in df, temporarily duplicate the data to compute SVD and return np matrices. Likely be added in v.0.4 or above

abstractqqq commented 2 months ago

https://github.com/abstractqqq/polars_ds_extension/pull/132