Closed spatts14 closed 2 weeks ago
The error you're seeing (ArpackNoConvergence.__init__() missing 2 required positional arguments: 'eigenvalues' and 'eigenvectors') indicates that an ArpackNoConvergence exception was raised, which occurs when the ARPACK solver (used in eigenvalue problems) fails to converge. This might be due to the nature of your data:
Since I don't have access to your data, it's difficult to determine the exact nature of your problem. Could you try to apply the function to our example dataset, gc.datasets.mibitof_breast_cancer()
? If that works, the error is most likely due to the nature of your data.
By the way, we do not yet have a visualization function to visualize diffusion results. To compare subgraphs and visualize the results, you could use the portrait method:
gc.tl.distance.compare_conditions(
adata=adata,
library_key=library_key,
cluster_key=cluster_key,
method="portrait",
compute_spatial_graphs=False,
kwargs_spatial_neighbors={
'coord_type': 'generic',
'delaunay': True,
}
)
Hi @spatts14, can you please confirm that this has been resolved using the latest version?
Closing this issue due to inactivity.
@spatts14, feel free to reopen or create a new issue if you encounter further errors or have additional questions. Thanks!
Hello!
I'm having a bit of an issue. I have V=0.2.3
I'm running this line of code:
This is the error I'm getting