I am experimenting with the cpt and bcp packages in R. I import the following data from a CSV file:
Here is the CSV file link: http://www.filedropper.com/cpttest
Running bcp:
p.bcp=bcp(p$Rate);
plot(p.bcp)
Point 28 is a change point according to bcp.
When running cpt, I get no indication that a change point exists:
p.cpt=cpt.mean(p$Rate,method="AMOC")
p.cpt
Wondering if anyone could advise why cpt does not detect a change point?