Fitting 4 parameter distributions in S-Plus (or R)

AI Thread Summary
The discussion centers on fitting sample data to a Johnson SU distribution using S-Plus, with a user encountering issues while applying the fitdistr function. The user has successfully fitted a Gumbel distribution with a similar approach but struggles with the four parameters of the Johnson SU distribution. Suggestions include verifying if the data truly follows a Johnson SU distribution and checking for outliers. Additionally, increasing the maximum iterations for the optimizers in fitdistr is recommended as a potential solution. The conversation highlights challenges in fitting complex distributions in statistical software.
mezza8
Messages
4
Reaction score
0
Hi, I am trying to fit sample data to a Johnson SU distribution in S-Plus. It seems not many people use S-Plus, so if you are familiar with R then you could help as well.

The code that I have is:


f.Jsu.fun.takeslist(x,g,l,r,e)
which is a function I have made that calculates the PDF of each value of the list x and has parameters g,l,r,e corresponding to the Johnson SU distribution. I know this PDF works because I have used it to plot graphs.

fitdistr(turn$all.turn.y.obs,f.Jsu.fun.takeslist,list(g=0.5,r=3,l=3000,e=-200))
is then what I am trying to use to fit the Johnson SU distribution. fitdistr is a native S-Plus function.


Now, the fitdistr doesn't work on this function.

What I have done previously though is fitted the Gumbel distribution using the same approach by creating my own PDF function, and fitdistr worked and provided a good fit.

The Gumbel distribution is 2 parameter and the Johnson SU is 4 parameter, so I am thinking it is just too many parameters for it to handle, although no limits are specified for fitdistr. I am by no means a master of S-Plus or R so I would appreciate anything you guys have to say on this.

Thanks! :smile:
 
Physics news on Phys.org
Can you guarantee that turn$all.turn.y.obs follows a Johnson SU? If you can't then maybe the fit is just not good, anyhow it might also be worth to look for outliers in you data.

The number of parameters should not be the problem, if anything you could also try to increase the number of max iterations for the optimizers used by fitdistr.
 
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...
Back
Top