This should be simple but I cannot for the life of me figure it out. I have a pandas dataframe:
d = {'col1': ["A", "B","C"], 'col2': [3, 4, 5], 'col3': [5,6,7]}
df = pd.DataFrame(data=d)
I would like to make a simple scatter plot -- of the row values in col2 and col3, but only for the row B or whichever row I choose. So here the x axis would be labelled col2, col3, and y axis would be 4, 6.
I've been trying variations of df.plot.scatter but failing.