Fish age-at-maturity is where there is a change in the slope of the growth rate. Here is an example of a simulated individual fish and its two growth rates.
I want to create an algorithm that will determine age-at-maturity from age and length data similar to the picture I attached. I have very little idea on what kind of algorithm would be useful and how to apply it to my sample data set:
> head(data)
age length
1 0 0.01479779
2 1 0.05439856
3 2 0.18308919
4 3 0.24380771
5 4 0.37759992
6 5 0.44871502
It was suggested to me to try and use the Cox Proportional Hazards model. To do that I would consider age-at-maturity as a time to event (maturity is the event and age is the time when maturity is reached). I tried fitting that model but got this error:
> cox.model <- coxph(Surv(age ~ length), data = data)
Error in Surv(age ~ length) : Time variable is not numeric
I tried making both variables numeric using as. numeric()
but that did not help.
Please let me know if I am using this model wrong or if I should be using a different model.
As I know, time-to-event data should include an event indicator, i.e. a binary variable. If maturity is the event, then it should have been included in the dataset as such a binary variable, and you should run this
cox.model <- coxph(Surv(age, maturity) ~ length, data = data)
Please check manual for more details
BTW, the figure was created by something like segmented regression and ggplot, I think you may want to use such tech. Here is an example.