Skip to content

Commit ebe49cc

Browse files
committed
Add comment in the init
1 parent 3ca5f10 commit ebe49cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pymc3/plots/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def wrapped(*args, **kwargs):
4242
return func(*args, **kwargs)
4343
return wrapped
4444

45+
# pymc3 custom plots: override these names for custom behavior
4546
autocorrplot = map_args(az.plot_autocorr)
4647
compareplot = map_args(az.plot_compare)
4748
forestplot = map_args(az.plot_forest)
@@ -55,6 +56,7 @@ def wrapped(*args, **kwargs):
5556
from .posteriorplot import plot_posterior_predictive_glm
5657

5758

59+
# Access to arviz plots: base plots provided by arviz
5860
for plot in az.plots.__all__:
5961
setattr(sys.modules[__name__], plot, map_args(getattr(az.plots, plot)))
6062

0 commit comments

Comments
 (0)