summaryrefslogtreecommitdiff
path: root/src/python/gudhi/persistence_graphical_tools.py
diff options
context:
space:
mode:
authortlacombe <lacombe1993@gmail.com>2020-03-06 13:31:05 +0100
committertlacombe <lacombe1993@gmail.com>2020-03-06 13:31:05 +0100
commit7789744d5d5972ef2d6218296a7b8a0a05337679 (patch)
treefca01c05950027a5087f850da15c5f9b4283e1cb /src/python/gudhi/persistence_graphical_tools.py
parenteccfa153efe660662be945134115f7634c27335d (diff)
set greyblock to False by default in density
Diffstat (limited to 'src/python/gudhi/persistence_graphical_tools.py')
-rw-r--r--src/python/gudhi/persistence_graphical_tools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/persistence_graphical_tools.py b/src/python/gudhi/persistence_graphical_tools.py
index 6fd854ff..8c38b684 100644
--- a/src/python/gudhi/persistence_graphical_tools.py
+++ b/src/python/gudhi/persistence_graphical_tools.py
@@ -361,7 +361,7 @@ def plot_persistence_density(
legend=False,
axes=None,
fontsize=16,
- greyblock=True
+ greyblock=False
):
"""This function plots the persistence density from persistence
values list, np.array of shape (N x 2) representing a diagram
@@ -410,7 +410,7 @@ def plot_persistence_density(
:param fontsize: Fontsize to use in axis.
:type fontsize: int
:param greyblock: if we want to plot a grey patch on the lower half plane
- for nicer rendering. Default True.
+ for nicer rendering. Default False.
:type greyblock: boolean
:returns: (`matplotlib.axes.Axes`): The axes on which the plot was drawn.
"""