Skip to content
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

Annotations are printed although annot=False in clustermap #2319

Closed
picciama opened this issue Oct 14, 2020 · 0 comments · Fixed by #2323
Closed

Annotations are printed although annot=False in clustermap #2319

picciama opened this issue Oct 14, 2020 · 0 comments · Fixed by #2323

Comments

@picciama
Copy link

Description

When plotting a clustermap and specifying annot=False, the annotations are printed.
When using heatmap, this doesn't happen.

Currently, this workaround is removing the annotations, when annot=False was passed.

if not annot:
   annot = None

Expected Behaviour

Annotations shouldn't be printed when specifying annot=False.

Code Example

uniform_data = np.random.rand(10, 12)
sb.clustermap(uniform_data, annot=False)

Produces:
image

Versions

seaborn 0.11.0; matplotlib 3.2.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants