I have fitted an gamlss object and created centile curves from it:
m1_IAT_m<-gamlss(IAT_rel~cs(age),family=BCPE,data=df_m)
centiles.fan(m1_IAT_m,df_m$age,cent=c(1,5,10,25,50,75,90,95), ylab="Power at IAT (W/kg)", xlab="age", ylim = range(0.5,3), colors = "cm")
Now I would like to create a table with reference values for certain percentages:
- 2.5%, 3%, 5%, 10%, 25%, 50%, 75%, 90%, 95%, 97%, 97.5%
for different age ranges:
- 14-18 years, 18-30 years, 30-65 years
How can I do this based on the gamlss
object?
I searched the help package and previous threats on this topic but did not find any information for this specific issue.