Jerry Gamblin
01/09/2025, 5:45 PMunique_id=ts_0
. Am I missing something obvious?José Morales
01/09/2025, 5:58 PMfig, ax = plt.subplots()
NixtlaClient.plot(..., ax=ax)
ax.set_title('My nice title')
Jerry Gamblin
01/09/2025, 7:53 PMJerry Gamblin
01/09/2025, 7:54 PMfig, ax = plt.subplots()
nixtla_client.plot(monthly_cves, timegpt_fcst_df, time_col='Month', target_col='CVEs', ax=ax)
ax.set_title('CVEs');
fig.set_size_inches(12, 2)
ax.legend(loc='upper right');
ax.set_xlabel('Date');
ax.set_ylabel('Published CVEs');
fig