Python Data Science Handbook: full text in Jupyter Notebooks
-
Updated
Jul 26, 2021 - Jupyter Notebook
Hi there,
while playing with the alpha mode (alpha=0.1) I noticed that the marker have a border. Is that a feature, or is there any way to disable it?
`
if df.signal_bull_week.notna().sum() > 0:
signal_bull_week = mpf.make_addplot( df.signal_bull_week -
Add a description, image, and links to the matplotlib topic page so that developers can more easily learn about it.
To associate your repository with the matplotlib topic, visit your repo's landing page and select "manage topics."
Bug summary
Figures saved via the
savefig
method are not saved relative to thercParams['savefig.directory']
path. Looking at the source code, it seems that this path is only prepended to the filename if the save request came via the interactive toolbar. Not sure if this is done intentionally, but it seems to me that thesavefig.directory
should always be respected.In the exampl