I have data from several subjects on what proportion of their time they spent in each quarter of a square-shaped room. Here is a sample data:
a <- rmultinom(12, 100, c(0.1, 0.4, 0.3, 0.2))
a / apply(a,2,sum)
### not running, but I would like to have something like this
# glm(a ~ 1, family=multinomial("logit")
I would be interested in the intercept, as my expectation is that they will spend most of their time in e.g. quarter 2.