PDA

View Full Version : Stat software for lay person



KegHead
July 16th, 2010, 05:40 PM
Hi!

I'm trying to find a stat program to determine roulette probability.

Is there an easy pkg for a lay person (non-scientist).

Thanks!

KegHead

lkjoel
July 18th, 2010, 09:16 PM
It would be easily possible to program a shell script to do that.
Like:

export total
while read line
do
export total=$line
done < total.txt
while read line
do
echo "$line/$total"
done < roulette.txtand on total.txt:

10and on roulette.txt:

Red: 3
Blue: 5
Yellow: 2And when it runs, it will display:

Red: 3/10
Blue: 5/10
Yellow: 2/10I hope that can help you!

KegHead
July 19th, 2010, 01:26 PM
Hi!

Thanks!

I'll try.

KegHead