I have been looking in google and documentation function like plogis, dlogis, which have in base not e but 10. Is something like this available?
I have been looking in google and documentation function like plogis , dlogis ,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t actually need another set of functions, since the transformation is trivial. The CDF for the logistic distribution with center mu and scale s is
F(x) = 1/(1+e^(-(x-mu)/s))
Let y=(x-mu)/s; then 10^y = e^(y*ln(10)), so you simply need to replace s by s/ln(10) to achieve the desired effect.