50g group photo

Yahoo Groups archive

50g

Archive for 50g.

Index last updated: 2026-03-30 00:59 UTC

Thread

Stat Frequency help needed

Stat Frequency help needed

2013-03-28 by Richard

I am missing something. Can anyone highlight the correct way to build the matrix in the data entry mode for Frequencies in the Stat Module. I have six groups, (35-44)(45-54) etc. each with a value for the number of occurrences. When I run the routine i.e. hit the OK soft key what I get back is a matrix filled with zeros and a vector with two zeros as well.

Probably an easy fix. Any advice anyone can offer would be great,

Thanks,

Richard

Re: Stat Frequency help needed

2013-03-29 by Richard

Just did.

Problem solved. The manuals for the 50g are much better than what came with the original 49g, and the large advanced users guide that you can download, doesn't have examples so the 50g manual is on my laptop for good.

Thanks for the suggestion,

Richard
--- In 50g@yahoogroups.com, Juan Calle <jcbuchin@...> wrote:
>
> Hello Richard, have you tryed the example in page 18-6 of the hp 50g's user guide?
>

Re: [50g] Stat Frequency help needed

2013-03-30 by Juan Calle

 

Hello Richard, I am glad you got your problem solved. I just want to point out that if you need to calculate the cumulative frequency, the program in page 18-9, like other programs in the user guide, is way too complicated that it has to be; here it is a program that execute the same task and it is not so complicated (The frequency vector should be in level 1:).


« { 0 } 1 PICK3 SIZE HEAD

FOR j

OVER j GET

OVER j GET

+ +

NEXT TAIL

»

Re: [50g] Stat Frequency help needed

2013-03-30 by JEREMY HAWDON

Hi Guys,

 

For cumulative frequency I prefer

 

« AXL 0 SWAP 1

  « OVER + » DOSUBS NIP

»

 

Regards, Jeremy