EDIT: A solution was provided by user #kgoettler below. The problem arise from Seaborn Boxplot requiring data to be organized by variable in the x-axis and values in the y-axis. The script below reorganizes the data into a form compatible with Seaborn Boxplot.
ORIGINAL QUESTION: My goal is to generate a Box plot using data from an CSV file. I would like to use the Python visualization library Seaborn. The data is organized with a common index (Object) and headers for each column.
I have difficulties importing this data into a Boxplot using the format
seaborn.boxplot(x="variable", y="value")
Using Pandas own boxplot this is not a problem since I simply specify what columns to use based on headers using the following format
boxplot = data.boxplot(column=['header1', 'header2', 'header3'])
I would also prefer not to have to specify each individual column by header, but rater select all columns in the file automatically.
All feedback and input is greatly appreciated!

