I managed to show two scatter plots from the same dataframe on one figure and try to link the point from the same row with a line on the figure. By any chance anyone might have an idea how i can do it? Thanks.
ax = pldata.plot(kind='scatter', x='column1', y='column2',
c='DarkBlue', label='Left', s=25)
pldata.plot(kind='scatter', x='column3', y='column4', c='DarkGreen',
label='Right', s=25, ax=ax)
