Show scatter plot title from column value
问题 I'm making automatic scatterplot charting with regression from my dataframe example I want to make correlation between Column2 to Column3 and Column2 to Column4 in separate scatter plot group by Column1. For example, there will be 3 scatter plot of Column2 to Column3 each with the title of A, B, and C For the plotting I'm using pandas scatter plot for example: df.groupby('Column1').plot.scatter(x='Column2',y='Column3') Scatter plot return exactly 3 plot, but I want to know how to add chart