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
Firstly, thank you for this outstanding circular visualization package.
However, I've encountered an issue while attempting to create a circos plot. I'm aiming for something similar to Example 4-2 in your documentation. My dataset consists of a 'to-from' table that includes approximately 37,000 entries, many of which are zeros. While using the following code to generate the circos diagram, I encounter a "ZeroDivisionError: float division by zero":
I'm curious about the potential cause of this error. Could it be related to the size of my matrix or its sparsity? Any insights or suggestions you could provide would be immensely helpful.
The text was updated successfully, but these errors were encountered:
I was too having that problem.
But when I checked my matrix data for link plot. I realized a problem due to zero link.
I deleted columns or rows that have 0 value.
Here's my data
That is Okay.
But if you have one or more columns or rows containing all 0. You need to delete that column. I hope you could understand.
Firstly, thank you for this outstanding circular visualization package.
However, I've encountered an issue while attempting to create a circos plot. I'm aiming for something similar to Example 4-2 in your documentation. My dataset consists of a 'to-from' table that includes approximately 37,000 entries, many of which are zeros. While using the following code to generate the circos diagram, I encounter a "ZeroDivisionError: float division by zero":
I'm curious about the potential cause of this error. Could it be related to the size of my matrix or its sparsity? Any insights or suggestions you could provide would be immensely helpful.
The text was updated successfully, but these errors were encountered: