What decides the value of the cp in this code?
cpVals = data.frame(cp = seq(0, .1, by =.002)
This gives the values from 0 to 1, but can I change it to for example
cpVals = data.frame(cp = seq(0, .01, by =.002))
Can someone explain the differences?
Thanks