I want to draw three lines in seaborn pointplot graph. Three lines are based on the label named for Total Confirmed, Total Death, Total Recovered
Here is my dataset
Date Total Confirmed Total Death Total Recovered
0 1/22/20 555 17 28
1 1/23/20 654 18 30
2 1/24/20 941 26 36
3 1/25/20 1434 42 39
4 1/26/20 2118 56 52
The code I wrote is shown only one value and not shown other two values. How can I fix my code to show all three lines in terms of log graph because their results are different each other.
plt.figure(figsize=(18,7))
ax = sns.pointplot(data = df, x='Date', y='Total Confirmed', color="b")
plt.title('General Trend', fontsize=22, y=1.015)
plt.xlabel('month-day-year', labelpad=16)
plt.ylabel('# of people', labelpad=16)
ax.figure.legend()
plt.xticks(rotation=90);
plt.savefig('images/image1.png')