I have obtained this image via matplotlib library.
Now I just want to increase y axis length to get a clearer view.
Code is given below:
plt.figure(1)
plt.subplot(211)
plt.plot_date(df['Condition'],df['Date'], tz=None, xdate=True, ydate=False)
plt.title('Scatter plot')
plt.xlabel('Condition')
plt.ylabel('Date')
plt.show()