I am trying to make a line plot in seaborn for each row. (Each line for each row). Using seaborn functionality as it is, I can only plot by specifying x and y as column names of the data frame.
One way is to simply transpose the data and then plot which works well for me after some adjustments. However, I am wondering if there is a simpler way than this.