Re: bash/awk equivalent code to gnu datamash

2020-05-26 Thread None via users
Sent from ProtonMail, encrypted email based in Switzerland. ‐‐‐ Original Message ‐‐‐ On Tuesday, May 26, 2020 5:51 AM, Samuel Sieb wrote: > On 5/25/20 5:40 PM, None via users wrote: > > > ‐‐‐ Original Message ‐‐‐ > > On Monday, May 25, 2020 7:58 PM, Samuel Sieb sam...@sieb.net

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread Samuel Sieb
On 5/25/20 5:40 PM, None via users wrote: ‐‐‐ Original Message ‐‐‐ On Monday, May 25, 2020 7:58 PM, Samuel Sieb wrote: On 5/25/20 12:08 PM, None via users wrote: Thank you. I see what you mean. I have checked and see here http://mathforum.org/library/drmath/view/60969.html Still I won

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread None via users
Sent from ProtonMail, encrypted email based in Switzerland. ‐‐‐ Original Message ‐‐‐ On Monday, May 25, 2020 7:58 PM, Samuel Sieb wrote: > On 5/25/20 12:08 PM, None via users wrote: > > > Sent from ProtonMail, encrypted email based in Switzerland. > > ‐‐‐ Original Message ‐‐‐

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread Samuel Sieb
On 5/25/20 12:08 PM, None via users wrote: Sent from ProtonMail, encrypted email based in Switzerland. ‐‐‐ Original Message ‐‐‐ On Monday, May 25, 2020 5:38 PM, Samuel Sieb wrote: On 5/25/20 3:12 AM, None via users wrote: I have heard of R but I am looking for awk/bash, bc or dc

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread None via users
Sent from ProtonMail, encrypted email based in Switzerland. ‐‐‐ Original Message ‐‐‐ On Monday, May 25, 2020 5:38 PM, Samuel Sieb wrote: > On 5/25/20 3:12 AM, None via users wrote: > > > I have heard of R but I am looking for awk/bash, bc or dc solution. A > > website does give 3 as

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread Samuel Sieb
On 5/25/20 3:12 AM, None via users wrote: I have heard of R but I am looking for awk/bash, bc or dc solution. A website does give 3 as q3 instead of 2.75. Please see below I realize that, but I'm saying that datamash and R are also correct. They use the calculation method instead of the spli

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread George N. White III
On Sun, 24 May 2020 at 21:35, None via users wrote: > Dear fellow fedora users, > > If I have a data file called 15.dat with the following content: > > $ cat 15.dat > 1 > 3 > 1 > 0 > 2 > > And I want to find min, quartile 1, median, quartile 3 and maximum (Five > number summary) > We can use data

Re: bash/awk equivalent code to gnu datamash

2020-05-25 Thread None via users
Sent from ProtonMail, encrypted email based in Switzerland. ‐‐‐ Original Message ‐‐‐ On Monday, May 25, 2020 3:01 AM, Samuel Sieb wrote: > On 5/24/20 5:34 PM, None via users wrote: > > > Dear fellow fedora users, > > If I have a data file called 15.dat with the following content: > >

Re: bash/awk equivalent code to gnu datamash

2020-05-24 Thread Samuel Sieb
On 5/24/20 5:34 PM, None via users wrote: Dear fellow fedora users, If I have a data file called 15.dat with the following content: $ cat 15.dat 1 3 1 0 2 I think you dropped the "6" from this copy. And I want to find min, quartile 1, median, quartile 3 and maximum (Five number summary) W

bash/awk equivalent code to gnu datamash

2020-05-24 Thread None via users
Dear fellow fedora users, If I have a data file called 15.dat with the following content: $ cat 15.dat 1 3 1 0 2 And I want to find min, quartile 1, median, quartile 3 and maximum (Five number summary) We can use datamash like $ cat 15.dat | datamash min 1 q1 1 median 1 q3 1 max 1