We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
Is it possible to adjust the vmin or vmax to a value below/above the min and max values of the data?
I get an error like this when I try and I'm wondering if there is a workaround: ValueError: value=0.13 is not in valid range (vmin=-0.18, vmax=0.097)
Also is it possible to set a center value to anchor the colors around? Similar to the functionality in seaborns heatmap.
Thanks
The text was updated successfully, but these errors were encountered:
Hi @MattFill,
Both of these are not possible with pyCirclize at this time. A solution may be considered in a future release.
Sorry, something went wrong.
Thanks for the update, @moshi4.
I was able to work around the error by commenting out the following line in track.py:
# Calculate radius & x position range list of heatmap rectangle data_row_num, data_col_num = data.shape unit_r_size = self.r_plot_size / data_row_num unit_x_size = (end - start) / data_col_num # self._check_value_min_max(data, vmin, vmax) <-----
No branches or pull requests
Hello,
Is it possible to adjust the vmin or vmax to a value below/above the min and max values of the data?
I get an error like this when I try and I'm wondering if there is a workaround:
ValueError: value=0.13 is not in valid range (vmin=-0.18, vmax=0.097)
Also is it possible to set a center value to anchor the colors around? Similar to the functionality in seaborns heatmap.
Thanks
The text was updated successfully, but these errors were encountered: