2016-09-15 64 views
0

一个额外的点,我有以下数据: “ani_vs_16s.csv”gnuplot的让步分散曲线

P_graminis_DSM_15220 P_jilunlii_ATCC_23019 93.02 99.2 
P_graminis_DSM_15220 P_polymyxa_ATCC_842 69.03 94.5 
P_jilunlii_ATCC_23019 P_polymyxa_ATCC_842 68.86 94.5 
P_graminis_DSM_15220 P_riograndensis_SBR5 91.76 99 
P_jilunlii_ATCC_23019 P_riograndensis_SBR5 92.76 98.5 
P_polymyxa_ATCC_842 P_riograndensis_SBR5 68.57 94.2 
P_graminis_DSM_15220 P_sonchi_X19-5 92.06 99.1 
P_jilunlii_ATCC_23019 P_sonchi_X19-5 93.31 99.2 
P_polymyxa_ATCC_842 P_sonchi_X19-5 68.88 94.8 
P_riograndensis_SBR5 P_sonchi_X19-5 96.09 99 
P_graminis_DSM_15220 P_sp._CAR114 91.38 99.4 
P_jilunlii_ATCC_23019 P_sp._CAR114 92.45 99.3 
P_polymyxa_ATCC_842 P_sp._CAR114 68.61 94.5 
P_riograndensis_SBR5 P_sp._CAR114 96.31 99.2 
P_sonchi_X19-5 P_sp._CAR114 95.61 99.4 
P_graminis_DSM_15220 P_sp._CAS34 91.84 99.5 
P_jilunlii_ATCC_23019 P_sp._CAS34 92.91 99 
P_polymyxa_ATCC_842 P_sp._CAS34 68.63 94.7 
P_riograndensis_SBR5 P_sp._CAS34 97.01 99.3 
P_sonchi_X19-5 P_sp._CAS34 96.32 99.6 
P_sp._CAR114 P_sp._CAS34 97.7 99.7 

当我绘制此点与gnuplot的,额外的点出现在图上(蓝色箭头)。该表有21个点,但在该图中显示了22个点(请注意,图的左下角有6个点)。 enter image description here

我检查了数据,但我无法找到问题。当我用LibreOffice Calc绘图时,不会出现额外的点。我的代码中有一些问题吗?

set terminal svg 
set output “ani_vs_16S.svg” 
set style rect fc lt -1 fs solid 0.15 noborder 
set object rect from 95, graph 0 to 100, graph 1 
set arrow from 0,98.5 to 100,98.5 nohead lw 8 
plot "ani_vs_16s.csv" using 3:4 with points pt 7 ps 1 
+0

这是一个不同的数据文件。您可以绘制第三列和第四列,但显示的数据只有两列 – Christoph

+0

确定。我已纠正它。谢谢。 – Fernando

回答

1

这一点似乎是传说的一部分。尝试将脚本添加到脚本最后一行的末尾。

+0

它工作完美! – Fernando