OT: Tutorials for R statistical language



Post: #10

Hi All,

During the HHC2009 the subject of the open source statistical language R came up. I was surprised that a few attendees were as gong ho about R as I was.

I have posted several tutorials for R on my website (namirshammas[[[dot]]]com). Click on the bottom most link in the main page and you will see the R Master Page with the list of tutorials. All but one link will let you download pdf files.

One of the tutorial deals with automatic best linearized regression model selection for two variables and multiple variables. In the tutorial I mention that the concept of best-model search is inspired by vintage programmable HP calculators. If you tinker in R, I recommend that you check that one and of course the other tutorials too.

Namir


Edited: 23 Oct 2009, 4:11 p.m.


Post: #11

You are a gentleman and a scholar, Sir!

I'm a moderate R user and have been having some problems with plotting, so I'll be starting straight away with your R 102 Plotting Tutorial.

Thanks for the link!

Best,

--- Les

[http://www.lesbell.com.au]


Post: #12

You are most welcome Les!

Namir

Post: #13

I also posted a short PDF file on my web site that has new approximations I was able to obtain for the inverse Normal, Student-t, Chi-square, and F probability distributions. You can find the pdf file when you click here to get to the New Algorithms page and then click on the related link.

The approximations for the inverse probability distributions are shorter than the legacy ones you find in the Handbook of Mathematical Functions and can easily be programmed on your calculators.

Namir


Post: #14

Thanks for this. Very interesting. No error estimate though :-( I only recently did the 20b scientific probability distributions and the inverses were a major pain. I ended up using the solver code and the cumulative distributions for all the hard cases. Since these functions are relatively well behaved, convergence seems to be fairly quick but I might look into your estimates as better starters...

- Pauli


Post: #15

I remember I was demanding on these equations. I would be very curious as to what your test comes up with.

Cheers,

Namir


Post: #16

You don't happen to have any good, simple approximations for binomial and Poisson cumulative do you? I am aware of the incomplete beta method, which is actually the method used to calculate most of the stat distros and inverses in the 20b, but nothing that is really simple and quick for general usage. I've seen several that do a good job over specific ranges, but I haven't seen one the works decently over the whole range.

TW


Post: #17

For Binomial and Poisson you could also sum the individual probabilities directly.

However, I'd go with the regularised incomplete beta and gamma functions for most of the common probability distributions. There are relatively short and quickly converging iterative methods for both.

The inverses aren't so nice :-(


- Pauli


Post: #18

Yeah, summing directly works great until you start getting large Ns. Of course you can just use an approximated normal at that point. . .

TW


Forum Jump: