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
I've been using Rips to make persistence diagrams. It works fine with the default maxdim=1. However, when I change to maxdim=2, I get no output and the stored variables I had disappear. I'm using Spyder to run my code, and all the variables in my variable explorer window disappear when I run maxdim=2. What is happening?
For example, this works fine:
rips=Rips()
dgms_X = rips.fit_transform(data)
plot_diagrams(dgms_X, show=True)
This dies:
rips=Rips(maxdim=2)
dgms_X = rips.fit_transform(data)
plot_diagrams(dgms_X, show=True)
Thank you!!
The text was updated successfully, but these errors were encountered:
I've been using Rips to make persistence diagrams. It works fine with the default maxdim=1. However, when I change to maxdim=2, I get no output and the stored variables I had disappear. I'm using Spyder to run my code, and all the variables in my variable explorer window disappear when I run maxdim=2. What is happening?
For example, this works fine:
rips=Rips()
dgms_X = rips.fit_transform(data)
plot_diagrams(dgms_X, show=True)
This dies:
rips=Rips(maxdim=2)
dgms_X = rips.fit_transform(data)
plot_diagrams(dgms_X, show=True)
Thank you!!
The text was updated successfully, but these errors were encountered: