I have two columns one is date column and the other column is the cumulative data column. I want to show the graph as shown in the desired output. But I want to set the range of the Y-axis column in the line graph. value [0,1].
ax = plt.gca()
df_selected.plot(kind='line',marker='o',x='biweek_send_date',y='sn_fuel_injector_4_1',ax=ax)
ax.tick_params(axis='x', colors='blue')
ax.tick_params(axis='y', colors='red')
plt.title("Accuracy month wise of 2017")
plt.ylabel('Accuracy Rate')
plt.xlabel('Summer-Autumn-Months')
plt.show()
The expected output is: