You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Mapper algorithm is a well-known technique in the field of topological data analysis that allows data to be represented as a graph.
24
-
Mapper is used in various fields such as machine learning, data mining, and social sciences, due to its ability to preserve topological features of the underlying space, providing a visual representation that facilitates exploration and interpretation.
25
-
For an in-depth coverage of Mapper you can read [the original paper](https://research.math.osu.edu/tgda/mapperPBG.pdf).
23
+
The Mapper algorithm is a well-known technique in the field of topological
24
+
data analysis that allows data to be represented as a graph.
25
+
Mapper is used in various fields such as machine learning, data mining, and
26
+
social sciences, due to its ability to preserve topological features of the
27
+
underlying space, providing a visual representation that facilitates
28
+
exploration and interpretation. For an in-depth coverage of Mapper you can
29
+
read
30
+
[the original paper](https://research.math.osu.edu/tgda/mapperPBG.pdf).
31
+
32
+
This library contains an implementation of Mapper, where the construction
33
+
of open covers is based on *vp-trees* for improved performance and scalability.
34
+
The details about this methodology are contained in
@@ -101,28 +113,11 @@ streamlit run app/streamlit_app.py
101
113
102
114
## Citations
103
115
104
-
If you want to use **tda-mapper** in your research please use one of the following citation.
105
-
For the methodology you can use:
106
-
107
-
```
108
-
Simi, L. (2024). A Scalable Implementation of Mapper for Topological Data Analysis via Vantage Point Trees. Zenodo. https://doi.org/10.5281/zenodo.10659652
109
-
```
110
-
111
-
BibTeX entry:
112
-
113
-
114
-
```
115
-
@misc{simi_2024_10659652,
116
-
author = {Simi, Luca},
117
-
title = {A Scalable Implementation of Mapper for Topological Data Analysis via Vantage Point Trees},
118
-
month = feb,
119
-
year = 2024,
120
-
publisher = {Zenodo},
121
-
doi = {10.5281/zenodo.10659652},
122
-
url = {https://doi.org/10.5281/zenodo.10659652}
123
-
}
124
-
```
116
+
If you want to use **tda-mapper** in your work or research, you can cite the
117
+
[archive uploaded on Zenodo](https://doi.org/10.5281/zenodo.10642381),
118
+
pointing to the specific version of the software used in your work.
125
119
126
-
If you want to refer to the actual library instead, you can reference the Zenodo
Copy file name to clipboardExpand all lines: docs/source/citations.rst
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,26 @@
1
1
Citations
2
2
=========
3
3
4
-
If you want to use **tda-mapper** in your research please use one of the following citation.
5
-
For the methodology you can use:
4
+
If you want to use **tda-mapper** in your work or research, you can cite the
5
+
`archive uploaded on Zenodo <https://doi.org/10.5281/zenodo.10642381>`__,
6
+
pointing to the specific version of the software used in your work, for example:
6
7
7
-
Simi, L. (2024). A Scalable Implementation of Mapper for Topological Data Analysis via Vantage Point Trees. Zenodo. https://doi.org/10.5281/zenodo.10659652
8
+
.. code:: RST
8
9
9
-
BibTeX entry:
10
+
@software{simi_2024_10883941,
11
+
author = {Simi, Luca},
12
+
title = {tda-mapper},
13
+
month = mar,
14
+
year = 2024,
15
+
publisher = {Zenodo},
16
+
version = {v0.5.2},
17
+
doi = {10.5281/zenodo.10883941},
18
+
url = {https://doi.org/10.5281/zenodo.10883941}
19
+
}
20
+
21
+
If you want to cite the methodology on which **tda-mapper** is based,
0 commit comments