kepler-mapper
kepler-mapper copied to clipboard
Kepler Mapper: A flexible Python implementation of the Mapper algorithm.
There is a confusion between Min and Max inside the projection statistic in cluster details when creating a visualisation with .visualize( mapper, lens=projection,...) I would like to simply change column...
The following test is never run: https://github.com/scikit-tda/kepler-mapper/blob/ece5d47f7d65654c588431dd2275197502740066/test/test_visuals.py#L269-L285 It isn't run as it is shadowed by this test later in the file: https://github.com/scikit-tda/kepler-mapper/blob/ece5d47f7d65654c588431dd2275197502740066/test/test_visuals.py#L299-L304 Additionally if one changes the first tests name...
The cubical cover computation is implemented incorrectly. It starts with the tests having the wrong expected behavior here: https://github.com/scikit-tda/kepler-mapper/blob/05adb8f1c14d6f0951c280d83b695a971144dd3c/test/test_coverer.py#L61-L66 If you cover the interval `[0,1]` with 2 cubes with 50%...
Given a new data point and its associated lens values, make it possible to find where it should appear on the graph, i.e. find which cluster is the closest. The...
It would be nice if there is a way to turn a networkx graph or a graph in edge list format (something like a list of tuples (I,J,V) or a...
Set custom_tooltips for each nodes using custom_tooltips arg Old version code ``` python kmgraph, mapper_summary, colorf_distribution = get_mapper_graph(scomplex, color_values, color_function_name='Distance to x-min', colorscale=my_colorscale) # assign to node['custom_tooltips'] the node label...
Fixes #208.
**Is your feature request related to a problem? Please describe.** I have a point cloud with approximately 2000 data points. The clustering is based on a precomputed distance matrix. The...
We can use sphinx to DRY use the repo's README as the index page for the docs., if we rewrite the readme to be .rst instead of .md. Same for...
Thanks for the effort. I was checking the lens/projection functions, I could not find the functions that are used in Singh original paper such as gaussian density or eccentricity. May...