I used the recipe in this answer to create a scatter plot with one column of my dataframe as the y and several other as different x's. The relevant code from that answer was:
ax1 = df.plot(kind='scatter', x='a', y='b', color='r')
ax2 = df.plot(kind='scatter', x='c', y='d', color='g', ax=ax1)
ax3 = df.plot(kind='scatter', x='e', y='f', color='b', ax=ax1)
Problem is, mine looks like this:
Is there something elegant and simple you can add to this plot command so that each x column's data will be scaled such that it occupies the whole axis? I don't care if none of the variables have ticks underneath anymore, just want to visually compare how the y changes for each of them.