On Thu, 4 Dec 2003, Kim Mouridsen wrote: > Dear R experts > > > > How can you perform a regression analysis in R when the dependent > variable is countiuous but bounded, say between 0 and 100? > > I would be grateful for pointers to R-functions but also for hints to > relavant litterature since I have never worked with this problem before.
The usual way is to perform a logistic regression, and nls() has code to fit various logistic regression: glm could also be used with response/100. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595 ______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help
