Skip to content

Commit

Permalink
MNT support conda install
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewSZhang committed Aug 19, 2024
1 parent 438aa96 commit 4d313e1
Show file tree
Hide file tree
Showing 3 changed files with 218 additions and 1,593 deletions.
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FastCan: A Fast Canonical-Correlation-Based Feature Selection Method
====================================================================
|Codecov| |CI| |Doc| |PythonVersion| |PyPi| |Black| |ruff| |pixi|
|conda| |Codecov| |CI| |Doc| |PythonVersion| |PyPi| |Black| |ruff| |pixi|

.. |conda| image:: https://img.shields.io/conda/vn/conda-forge/fastcan.svg
:target: https://anaconda.org/conda-forge/fastcan

.. |Codecov| image:: https://codecov.io/gh/MatthewSZhang/fastcan/branch/main/graph/badge.svg
:target: https://codecov.io/gh/MatthewSZhang/fastcan
Expand Down Expand Up @@ -43,10 +45,14 @@ FastCan is a Python implementation of the following papers.
Installation
------------

Install **FastCan**:
Install **FastCan** via PyPi:

* Run ``pip install fastcan``

Or via conda-forge:

* Run ``conda install -c conda-forge fastcan``

Examples
--------
>>> from fastcan import FastCan
Expand All @@ -58,9 +64,3 @@ Examples
>>> selector = FastCan(n_features_to_select=2, verbose=0).fit(X, y)
>>> selector.get_support()
array([ True, True, False])

Uninstallation
--------------
Uninstall **FastCan**:

* Run ``pip uninstall fastcan``
Loading

0 comments on commit 4d313e1

Please sign in to comment.