Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4516
| Newsgroups | comp.graphics.apps.gnuplot |
|---|---|
| Date | 2023-04-17 02:44 -0700 |
| Message-ID | <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com> (permalink) |
| Subject | I want to show the count |
| From | Joey S <jos47117@gmail.com> |
gnuplot -persist <<-EOFMarker
reset
set boxwidth 0.1
set grid ytics linestyle 0
set style fill solid noborder
set terminal svg size 800,600
set datafile separator ";"
set title "Pathogene"
set xlabel "${filename%.*}"
set ylabel "Prozentualer Anteil"
set format y "%+-12.2f"
set xtics rotate by 90 right
set term png size 800,600
set output "${filename%.*}.png"
stats "$1" using 0:3
print STATS_max_y
plot "${1}" using 0:4:xtic(2) every ::0::30 with boxes lc rgb "#0045FF" title
rotate by 90 notitle
EOFMarker
}
Thats my Data
2023_04_16_11_45_36_ma_kuniq_standard_plus_eupath_minus_kdb_R_.txt; Plasmodium;45;.00003729825158146451
2023_04_16_11_45_36_ma_kuniq_standard_plus_eupath_minus_kdb_R_.txt; Clostridioides difficile;112;.00009283120393608946
And i want to show field 4 (or 3) as number in the graphic. I try it in every form but i think i don't understanding Gnuplot it doesnt fit in my brain !?!
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
I want to show the count Joey S <jos47117@gmail.com> - 2023-04-17 02:44 -0700
Re: I want to show the count Jörg Buchholz <bookwood4new@freenet.de> - 2023-04-17 15:19 +0200
Re: I want to show the count Joey S <jos47117@gmail.com> - 2023-04-20 23:08 -0700
Re: I want to show the count Joey S <jos47117@gmail.com> - 2023-04-20 23:36 -0700
Re: I want to show the count Jörg Buchholz <bookwood4new@freenet.de> - 2023-04-24 07:43 +0200
csiph-web