I'm trying to do a benchmarking line chart of a login times of a website between two groups of user. My dataframe is as follows:
df:
Group Jan Feb Mar Apr May June
A 12 62 44 34 15 25
B 55 43 42 29 42 33
How can I make a chart with two lines: A and B, with X axis being the months and y axis being the login times? I appreciate any assistance on this. Thanks in advance!