|
From: m.shankar.m <m.s...@gm...> - 2010-12-03 13:46:35
|
hello.
I have two csv files with identical first column.
File1.data contents:
#File|#FP|
CC0.dm|569|
CC1.dm|753|
CC2.dm|763|
CC3.dm|884|
CC4.dm|916|
File2.data contents:
#File|#FP|
CC0.dm|869|
CC1.dm|853|
CC2.dm|893|
CC3.dm|894|
CC4.dm|896|
Plot.plt contents:
reset
set terminal png
set output "./Plot.png"
set datafile separator '|'
set title "FP per file"
set xlabel "File"
set ylabel "FP"
plot "./File1.data" using 0:2:xticlabels(1) w linespoints title "1", \
"./File2.data" using 0:2:xticlabels(1) w linespoints title "2"
This plots all the data points from File1.csv, but only one point from
File2.csv. So, I see one line and a point.
Using GNU 4.4 patchlevel 2.
The requirement is clear to have the data split in two files, however with
identical first column.
Please let me know what I miss.
Thank you in advance.
Shankar
--
View this message in context: http://old.nabble.com/string-data-on-x-axis-from-two-files-tp30366550p30366550.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|