Skip to content

Commit ec36836

Browse files
author
Andreas Kanz
committed
udpate mv plot
1 parent 4190f78 commit ec36836

File tree

4 files changed

+3
-21
lines changed

4 files changed

+3
-21
lines changed

poetry.lock

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "klib"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Customized data preprocessing functions for frequent tasks."
55
authors = ["Andreas Kanz <[email protected]>"]
66
license = "MIT"

src/klib/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Current version of klib"""
2-
__version__ = "0.2.3"
2+
__version__ = "1.0.1"

src/klib/describe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ def missingval_plot(
691691
height = rect.get_height()
692692
ax1.text(
693693
rect.get_x() + rect.get_width() / 2,
694-
height + min(height, 3),
694+
height + max(np.log(1 + height / 6), 0.075),
695695
label,
696696
ha="center",
697697
va="bottom",

0 commit comments

Comments
 (0)