so I don't have much of an idea on how to do this at all, I know how to plot for example a scatter plot like below from a dataframe, but is there a way that I can plot for when a column meets a certain parameter, for example only on specific dates, or would I have to create new dataframes for each selection of data I want to plot and plot from there?
df_plot.plot(x = 'Date', y = 'Good (1) : Bad (0)', kind = 'scatter', title = ('Good Vs. Bad Data')).set_xlabel("{}{}{}{}".format(' Date ',df_plot['Date'][0],' untill ',df_plot['Date'][len(df_plot)-1]))
plt.xticks([])
TIA!