Resampling Procedure:

Curve-fitting to find breakpoints

# Plot PA curve
PA.gg <- ggplot(data = Data, aes(x = PA_x1, y = PA_y1))+
  geom_line(size = 0.8)+
  xlab("Number of Responses")+
  ylab("Standard Deviation (SD) of PA time series")+
  ggtitle("Standard Deviation of PA Time Series \n by Number of Responses")+
  theme_grey()+
  theme(plot.title = element_text(hjust = 0.5))

print(PA.gg)

For the curve fit to PA SD values, there is a notable breakpoint at approximately 5 responses.

# Plot NA curve
NA.gg <- ggplot(data = Data, aes(x = NA_x1, y = NA_y1))+
  geom_line(size = 0.8)+
  xlab("Number of Responses")+
  ylab("Standard Deviation (SD) of NA time series")+
  ggtitle("Standard Deviation of NA Time Series \n by Number of Responses")+
  theme_grey()+
  theme(plot.title = element_text(hjust = 0.5))

print(NA.gg)

For the curve fit to NA SD values, there is no distinct breakpoint.