|
From: Thomas S. <t.s...@fz...> - 2011-03-08 08:32:19
|
plot \ "A.csv" using ($0+1):2 w linespoints title "A", \ "B.csv" using ($0+1):2 w linespoints title "B", \ "C.csv" using 0:2:xticlabels(1) w linespoints title "C" m.shankar.m wrote: > > hello, > > I have following situation. http://old.nabble.com/file/p31089202/plot.zip > Download files : plot.zip > > ## file A.csv > File,LOC,SLOC-P,SLOC-L > ./\CCComponent.cpp,1859,1823 > ./\IAlarmComponent.cpp,815,783 > > ## file B.csv > File,LOC,SLOC-P,SLOC-L > ./\CCComponent.cpp,2360,1795 > ./\IAlarmComponent.cpp,960,771 > > ## file C.csv > File,LOC,SLOC-P > ./\AlarmSystemComponent.cpp,527,461 > ./\CCComponent.cpp,2353,1791 > ./\IAlarmComponent.cpp,950,771 > > ## file test.plt > set terminal svg > set output "test.svg" > set datafile separator ',' > plot "A.csv" using 0:2:xticlabels(1) w linespoints title "A", \ > "B.csv" using 0:2:xticlabels(1) w linespoints title "B", \ > "C.csv" using 0:2:xticlabels(1) w linespoints title "C" > reset > > The output "test.svg" plots correct data, but at incorrect x-axis > location. For example, for point "./\AlarmSystemComponent.cpp", I expect > only one data point. > > Any thoughts? Thank you in advance. > > Shankar > > -- View this message in context: http://old.nabble.com/how-to-ignore-missing-lines---%28not-sure-of-proper-title-for-this%29-tp31089202p31095195.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |