Very new at Python and first time using matplotlib
I'm trying to graph a multiline plot based on the rows of a CSV file.
CSV file looks something like this:
Row1 S1 S2 S3 HWS
Row2 2.45 3.76 2.44 1
Row3 3.59 2.56 9.68 2
Row4 2.54 9.45 6.78 3
I want to graph the HWS values by each row in the csv file.
Ex: For Row2, I want my points to be (1, 2.45), (2, 3.76), and (3, 2.44). For Row3, I want my points to be (1, 3.59), (2, 2.56), and (3, 9.68).
I've already looked at modules like pandas from other stack overflow answers, but I can't find commands to graph by rows. All I found is ways to graph a whole CSV file or ways to isolate columns of a csv file.
Is there a way to graph this way using Python and matplotlib?