-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inverse_X issue and cluster select. #68
Comments
Hi! Thanks for the feedback. I look forward to seeing how the right click tool works out. I'm not sure what you mean by Here is how you would do that with the cat example. data = np.genfromtxt('cat-reference.csv',delimiter=',')
graph = mapper.map(data,
clusterer=sklearn.cluster.DBSCAN(eps=0.1, min_samples=5),
coverer=km.Cover(nr_cubes=15, overlap_perc=0.2)) Is this what you're looking for? |
I suspect the parameters for DBSCAN are too small when it's clustering in the full 161 dimensions. For example, if I lower
|
It can also be the If you want to force nodes and links, without worrying about |
@WolVesz were you able to get this working? |
I assume the issue has been cleared up. If not, please reopen and we will figure out what's wrong. |
Hello All,
Really like this project, better than all the other mapper tools on python right now imo.
However, I am consistently having a problem where whenever I include inverse_X in the mapping, the mapping returns 0 nodes and 0 edges. I have tried this with a number of different data sets without success. I have done this on data sets with 300D and 200,000 rows and 200D, 100D, and all your sample sets with the same result. Its possible I am just ignorant, but I believe that all of these data sets should work with Inverse_X given it is just projecting along the original data. There are no errors produced for this problem. If inverse_X is not included, the mapper works as expected.
On another note, I am going to start working on a right click selection tool for displaying contents of nodes as i need this for my research. No idea how successful i'll be. Ill let you know.
The text was updated successfully, but these errors were encountered: