Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Backed up the system lately?


devel / comp.graphics.apps.gnuplot / Re: I want to show the count

SubjectAuthor
* I want to show the countJoey S
`* Re: I want to show the countJörg Buchholz
 +- Re: I want to show the countJoey S
 `* Re: I want to show the countJoey S
  `- Re: I want to show the countJörg Buchholz

1
I want to show the count

<d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=137&group=comp.graphics.apps.gnuplot#137

 copy link   Newsgroups: comp.graphics.apps.gnuplot
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: i2pn2.org!i2pn.org!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: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com>
Subject: I want to show the count
From: jos47...@gmail.com (Joey S)
Injection-Date: Mon, 17 Apr 2023 09:44:11 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1983
 by: Joey S - Mon, 17 Apr 2023 09:44 UTC

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 !?!

Re: I want to show the count

<u1jh14$321of$1@dont-email.me>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=138&group=comp.graphics.apps.gnuplot#138

 copy link   Newsgroups: comp.graphics.apps.gnuplot
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: bookwood...@freenet.de (Jörg Buchholz)
Newsgroups: comp.graphics.apps.gnuplot
Subject: Re: I want to show the count
Date: Mon, 17 Apr 2023 15:19:31 +0200
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <u1jh14$321of$1@dont-email.me>
References: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 17 Apr 2023 13:19:32 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="3ac243213d1158cc2cad173d66d881cf";
logging-data="3213071"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+n5/pLPw6H0CE8KSGYxyi8AsfMdosF6Ps="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha1:b+ltKHuqaMOnEYWVZ91KzU/6Hp0=
In-Reply-To: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com>
Content-Language: de-DE
 by: Jörg Buchholz - Mon, 17 Apr 2023 13:19 UTC

On 17.04.2023 11:44, Joey S wrote:
> 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 !?!

Help this?

plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes lc rgb "#0045FF"
notitle, '' u 0:4:4 every ::0::30 with labels offset 0,1 notitle

Jörg

Re: I want to show the count

<e20436b7-0090-4de9-b4c1-3845e49e8253n@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=139&group=comp.graphics.apps.gnuplot#139

 copy link   Newsgroups: comp.graphics.apps.gnuplot
X-Received: by 2002:a05:622a:d2:b0:3ef:32db:b249 with SMTP id p18-20020a05622a00d200b003ef32dbb249mr1064631qtw.1.1682057329861;
Thu, 20 Apr 2023 23:08:49 -0700 (PDT)
X-Received: by 2002:a25:d64a:0:b0:997:c919:4484 with SMTP id
n71-20020a25d64a000000b00997c9194484mr779770ybg.6.1682057329416; Thu, 20 Apr
2023 23:08:49 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.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: Thu, 20 Apr 2023 23:08:49 -0700 (PDT)
In-Reply-To: <u1jh14$321of$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=87.149.245.139; posting-account=fv0xuAoAAAB6GKIhx4LSpOzxPqK8gHFb
NNTP-Posting-Host: 87.149.245.139
References: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com> <u1jh14$321of$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <e20436b7-0090-4de9-b4c1-3845e49e8253n@googlegroups.com>
Subject: Re: I want to show the count
From: jos47...@gmail.com (Joey S)
Injection-Date: Fri, 21 Apr 2023 06:08:49 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2938
 by: Joey S - Fri, 21 Apr 2023 06:08 UTC

Jörg Buchholz schrieb am Montag, 17. April 2023 um 15:19:35 UTC+2:
> On 17.04.2023 11:44, Joey S wrote:
> > 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 !?!
> Help this?
>
> plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes lc rgb "#0045FF"
> notitle, '' u 0:4:4 every ::0::30 with labels offset 0,1 notitle
>
> Jörg
No Error but a zero byte grafik . :( Thanks for your help :(

If anybody could make Grafiks from Kraken2 or krakenuniq report !!! Say hello to me and give me a hint ! ;)
https://github.com/DerrickWood/kraken2
https://github.com/fbreitwieser/krakenuniq

or if someone is Ill and want to make research with me !

Re: I want to show the count

<f5bec929-dba3-47de-a9c6-50f3e75643b1n@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=140&group=comp.graphics.apps.gnuplot#140

 copy link   Newsgroups: comp.graphics.apps.gnuplot
X-Received: by 2002:ac8:7c44:0:b0:3e3:8455:f307 with SMTP id o4-20020ac87c44000000b003e38455f307mr1364242qtv.1.1682059015192;
Thu, 20 Apr 2023 23:36:55 -0700 (PDT)
X-Received: by 2002:a25:cc16:0:b0:b8e:efd8:f2c with SMTP id
l22-20020a25cc16000000b00b8eefd80f2cmr1198080ybf.1.1682059014941; Thu, 20 Apr
2023 23:36:54 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.graphics.apps.gnuplot
Date: Thu, 20 Apr 2023 23:36:54 -0700 (PDT)
In-Reply-To: <u1jh14$321of$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=87.149.245.139; posting-account=fv0xuAoAAAB6GKIhx4LSpOzxPqK8gHFb
NNTP-Posting-Host: 87.149.245.139
References: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com> <u1jh14$321of$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f5bec929-dba3-47de-a9c6-50f3e75643b1n@googlegroups.com>
Subject: Re: I want to show the count
From: jos47...@gmail.com (Joey S)
Injection-Date: Fri, 21 Apr 2023 06:36:55 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Joey S - Fri, 21 Apr 2023 06:36 UTC

Jörg Buchholz schrieb am Montag, 17. April 2023 um 15:19:35 UTC+2:
> On 17.04.2023 11:44, Joey S wrote:
> > 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 !?!
> Help this?
>
> plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes lc rgb "#0045FF"
> notitle, '' u 0:4:4 every ::0::30 with labels offset 0,1 notitle
>
> Jörg
This one works ! :) :)
plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes notitle, '' u 0:4:3 every ::0::30 with labels offset 0,1 notitle

Is it possible to format the counts to 00,0000 Field 4

Re: I want to show the count

<u254tc$7d0r$1@dont-email.me>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=141&group=comp.graphics.apps.gnuplot#141

 copy link   Newsgroups: comp.graphics.apps.gnuplot
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: bookwood...@freenet.de (Jörg Buchholz)
Newsgroups: comp.graphics.apps.gnuplot
Subject: Re: I want to show the count
Date: Mon, 24 Apr 2023 07:43:13 +0200
Organization: A noiseless patient Spider
Lines: 23
Message-ID: <u254tc$7d0r$1@dont-email.me>
References: <d8c535fd-cabe-4cd8-92ab-8fa0a89c0666n@googlegroups.com>
<u1jh14$321of$1@dont-email.me>
<f5bec929-dba3-47de-a9c6-50f3e75643b1n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 24 Apr 2023 05:43:08 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="30e02e1935208bf9e1472bcfb0e7679b";
logging-data="242715"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX194X6IXRjhO5zQLnYQHiWI3PQdVG4EYEXA="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha1:7kYMaNuFOtSqyYypkU/hic8t5nU=
Content-Language: de-DE, en-GB
In-Reply-To: <f5bec929-dba3-47de-a9c6-50f3e75643b1n@googlegroups.com>
 by: Jörg Buchholz - Mon, 24 Apr 2023 05:43 UTC

On 21.04.2023 08:36, Joey S wrote:

>> Jörg
> This one works ! :) :)
> plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes notitle, '' u 0:4:3 every ::0::30 with labels offset 0,1 notitle
>
> Is it possible to format the counts to 00,0000 Field 4

plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes notitle, '' u
0:4:(sprintf("%2.5f",$4)) with labels offset 0,1 notitle, '' u 0:4:3
with labels offset 0,2 notitle

This is one line, the line break comes from the newsreader.

plot "${1}" u 0:4:xtic(2) every ::0::30 with boxes notitle,\
'' u 0:4:(sprintf("%2.5f",$4)) with labels offset 0,1 notitle,\
'' u 0:4:3 with labels offset 0,2 notitle

With ",\" you can do line breaks in the plot command.

Jörg

1
server_pubkey.txt

rocksolid light 0.9.7
clearnet tor