I have a question about ploting graphics with gnuplot.
I have a .csv file, the first row has to be the y axis and the second row has to be the x axis
This is the file.csv
7.88, 7.26, 61.89, 7.00, 6.92, 6.96, 7.42
3, 4, 5, 6, 7, 8, 9
and this the code:
set datafile separator comma
plot 'file.csv' using 2:xtic(1) notitle with boxes
There are examples for plotting row-wise, but these examples do not cover this case or are using an external tool for reformatting of the data.
Using gnuplot matrix (cannot be used in this case):
Plot csv file with multiple rows using gnuplot
Plotting .csv data by row with GNUplot
Reformatting (awk and an unspecified tool):
Gnuplot: Plot row-wise and named data as bundle of differently colored and titled lines
Can this maybe nevertheless be achieved with gnuplot only?
