Tech Support > Operating Systems > Linux / Variants > any simple stats programs via shareware for linux
any simple stats programs via shareware for linux
Posted by William J King on March 3rd, 2004




anyone know of stats programs, just total the counts of record
types, availiable in linux shareware world?

Wm j king


Posted by Chris F.A. Johnson on March 3rd, 2004


On Wed, 03 Mar 2004 at 23:12 GMT, William J King wrote:
awk

--
Chris F.A. Johnson http://cfaj.freeshell.org/shell
================================================== =================
My code (if any) in this post is copyright 2004, Chris F.A. Johnson
and may be copied under the terms of the GNU General Public License

Posted by Roodwriter@core.com on March 4th, 2004


Chris F.A. Johnson wrote:


Just for the record, awk is not shareware. Shareware is "try before you
buy." Awk is free software, both in price and rights.

I'm just bringing this up in case the original poster is confused by the
difference. There's very little Linux shareware. Most is free.

--Rod

__________

Author of "Linux for Non-Geeks--Clear-eyed Answers for Practical Consumers"
and "Boring Stories from Uncle Rod." Both are available at
http://www.rodwriterpublishing.com/index.html

To reply by e-mail, take the extra "o" out of the name.


Posted by Dan Skinner on March 4th, 2004


"Chris F.A. Johnson" <c.fa.johnson@rogers.com> wrote in message news:<c25qfh$1qdkgu$2@ID-210011.news.uni-berlin.de>...
And if that's too complicated try
Grep | wc

Regards...Dan.

Posted by Christopher Browne on March 4th, 2004


Centuries ago, Nostradamus foresaw when bill@Hawaii.Edu (William J King) would write:
http://www.r-project.org/
http://www.octave.org/
http://www.gnu.org/software/pspp/pspp.html
--
(reverse (concatenate 'string "moc.enworbbc" "@" "enworbbc"))
http://www.ntlug.org/~cbbrowne/orsoft.html
"Recursion is the root of computation since it trades description for time."
-- Alan Perlis

Posted by Anonymous on March 4th, 2004


"WJK" == William J King <bill@Hawaii.Edu>:
WJK>
WJK> anyone know of stats programs, just total the counts of record
WJK> types, availiable in linux shareware world?

`pspp' : Statistical analysis of sampled data (GNU)

`|STAT' : data manipulation & analysis programs
|STAT is (or was) available via anonymous ftp in pub/stat at
archive.cis.ohio-state.edu

Posted by John Hasler on March 4th, 2004


William J King writes:
Christopher Browne writes:
Those are Free. He wants "shareware".
--
John Hasler
john@dhh.gt.org
Dancing Horse Hill
Elmwood, Wisconsin

Posted by Chris F.A. Johnson on March 4th, 2004


On Thu, 4 Mar 2004, William J King wrote:

On Wed, 03 Mar 2004 at 23:41 GMT, Chris F.A. Johnson wrote:
awk '{ ++x[$0] } END { for ( z in x ) printf "%d\t%s\n", x[z], z }' FILE

--
Chris F.A. Johnson
================================================== ===============
c.fa.johnson@rogers.com http://cfaj.freeshell.org

Posted by Ed Murphy on March 5th, 2004


On Thu, 04 Mar 2004 08:10:42 -0600, John Hasler wrote:

But what he probably *needs* is an explanation of the difference
between shareware and free.


Posted by Christopher Browne on March 5th, 2004


Quoth John Hasler <john@dhh.gt.org>:
Ah. Well then, he can download one of those, and then send me $40.
--
(format nil "~S@~S" "cbbrowne" "acm.org")
http://www3.sympatico.ca/cbbrowne/languages.html
If men can run the world, why can't they stop wearing neckties? How
intelligent is it to start the day by tying a little noose around your
neck? --Linda Ellerbee

Posted by Anonymous on March 5th, 2004


On Thu, 4 Mar 2004, William J King wrote:
Use sort and uniq:

sort -n FILE | uniq -c










Posted by Jean-David Beyer on March 6th, 2004


Anonymous wrote:

sort -nu FILE

--
.~. Jean-David Beyer Registered Linux User 85642.
/V\ Registered Machine 73926.
/( )\ Shrewsbury, New Jersey http://counter.li.org
^^-^^ 9:30pm up 8:30, 2 users, load average: 2.21, 2.15, 2.15


Posted by Chris F.A. Johnson on March 6th, 2004


On Sat, 06 Mar 2004 at 02:34 GMT, Jean-David Beyer wrote:
And how does that count the number of times each IP address is in
the file?

--
Chris F.A. Johnson http://cfaj.freeshell.org/shell
================================================== =================
My code (if any) in this post is copyright 2004, Chris F.A. Johnson
and may be copied under the terms of the GNU General Public License