@@ -17,21 +17,8 @@ It enables fast computation of Mapper graphs by using *vp-trees* to optimize
1717the construction of open covers, improving both performance and scalability.
1818
1919For further details, please refer to the
20- [ preprint] ( https://doi.org/10.5281/zenodo.10659651 ) .
21-
22- - ** Installation** : ` pip install tda-mapper `
23-
24- - ** Documentation** : [ Online on Read the Docs] ( https://tda-mapper.readthedocs.io/en/main/ ) .
25-
26- - ** Interactive App** : [ Live Demo on Streamlit Cloud] ( https://tda-mapper-app.streamlit.app/ ) ,
27- or run locally with:
28-
29- ```
30- pip install -r app/requirements.txt
31- streamlit run app/streamlit_app.py
32- ```
33-
34- ## Features
20+ [ preprint] ( https://doi.org/10.5281/zenodo.10659651 ) and
21+ [ online documentation] ( https://tda-mapper.readthedocs.io/en/main/ ) .
3522
3623- ** Efficient Mapper Computation** : Optimized for higher-dimensional lenses.
3724
5643| ![ Step 1] ( https://github.com/lucasimi/tda-mapper-python/raw/main/resources/mapper_1.png ) | ![ Step 2] ( https://github.com/lucasimi/tda-mapper-python/raw/main/resources/mapper_2.png ) | ![ Step 3] ( https://github.com/lucasimi/tda-mapper-python/raw/main/resources/mapper_3.png ) | ![ Step 2] ( https://github.com/lucasimi/tda-mapper-python/raw/main/resources/mapper_4.png ) |
5744| Chose lens | Cover image | Run clustering | Build graph |
5845
46+ ## Citations
47+
48+ If you use ** tda-mapper** in your work, please consider citing both the
49+ [ library] ( https://doi.org/10.5281/zenodo.10642381 ) , archived in a permanent
50+ Zenodo record, and the [ preprint] ( https://doi.org/10.5281/zenodo.10659651 ) ,
51+ which provides a broader methodological overview.
52+ We recommend citing the specific version of the library used in your research,
53+ as well as the latest version of the preprint.
54+ For citation examples, refer to the
55+ [ documentation] ( https://tda-mapper.readthedocs.io/en/main/citations.html ) .
56+
5957## Quick Start
6058
59+ ### Installation
60+
61+ To install the latest version uploaded on PyPI
62+
63+ ``` bash
64+ pip install tda-mapper
65+ ```
66+
67+ ### How to Use
68+
6169Here's a minimal example using the ** circles dataset** from ` scikit-learn ` to
6270demonstrate how to use ** tda-mapper** :
6371
@@ -92,13 +100,13 @@ fig.show(config={'scrollZoom': True})
92100More examples can be found in the
93101[ documentation] ( https://tda-mapper.readthedocs.io/en/main/examples.html ) .
94102
95- ## Citations
103+ ## Interactive App
96104
97- If you use ** tda-mapper** in your work, please consider citing both the
98- [ library ] ( https://doi.org/10.5281/zenodo.10642381 ) , archived in a permanent
99- Zenodo record, and the [ preprint ] ( https://doi.org/10.5281/zenodo.10659651 ) ,
100- which provides a broader methodological overview.
101- We recommend citing the specific version of the library used in your research,
102- as well as the latest version of the preprint.
103- For citation examples, refer to the
104- [ documentation ] ( https://tda-mapper.readthedocs.io/en/main/citations.html ) .
105+ You can see a live demo of ** tda-mapper** without installing anything on the
106+ [ Live Demo on Streamlit Cloud ] ( https://tda-mapper-app.streamlit.app/ ) ,
107+ or run Locally with:
108+
109+ ```
110+ pip install -r app/requirements.txt
111+ streamlit run app/streamlit_app.py
112+ ```
0 commit comments