modelskill
modelskill copied to clipboard
Skill table incomplete when using `savefig`
ax = cmp.plot.scatter(skill_table=True)
fig = ax.get_figure()
fig.savefig('../docs/images/scatter_plot.png')
🤔
I usually just do
import matplotlib.pyplot as plt
ax = cmp.plot.scatter(skill_table=True)
plt.savefig('../docs/images/scatter_plot.png')
and it works every time
Ok I have seen this issue in VSCode now, but same notebook does not have issue in a normal Jupyter-notebook / Jupyterlab.