arviz
arviz copied to clipboard
How to define the location of plot_forest legend?
It tends to overlap with the posterior lines. I would like to set up something like loc=(1, 0.5)
Found a way with seaborn.move_legend
helper
It's not possible to pass arguments through plot_forest to customize the legend, the move_legend
option is the best that can be done so far
plt.legend(handles=[dummy_legend], loc='center left', bbox_to_anchor=(1, 0.5))
Remember to replace dummy_legend with your actual legend label