X-Received: by 2002:ac8:4e8f:0:b0:3ea:ce1c:a2b6 with SMTP id 15-20020ac84e8f000000b003eace1ca2b6mr3663371qtp.11.1681724651283; Mon, 17 Apr 2023 02:44:11 -0700 (PDT) X-Received: by 2002:a25:e08c:0:b0:b8f:3647:d757 with SMTP id x134-20020a25e08c000000b00b8f3647d757mr9437681ybg.11.1681724650995; Mon, 17 Apr 2023 02:44:10 -0700 (PDT) Path: csiph.com!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Mon, 17 Apr 2023 02:44:10 -0700 (PDT) Injection-Info: google-groups.googlegroups.com; posting-host=87.149.245.139; posting-account=fv0xuAoAAAB6GKIhx4LSpOzxPqK8gHFb NNTP-Posting-Host: 87.149.245.139 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: I want to show the count From: Joey S Injection-Date: Mon, 17 Apr 2023 09:44:11 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Bytes: 1983 Xref: csiph.com comp.graphics.apps.gnuplot:4516 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 !?!