I've got the following:
x <- c(549.9 , 400 , 325.9 , 250.2 , 200.1 , 150 , 120 , 79.92 , 39.96)
y <- c(5.748 , 3.50152 , 2.70204 , 2.54265 , 2.52241 , 1.35861 , 1.377444444 , 1.279055556 , 1.05501)
nls(y ~ A + B*(x^C))
I haven't managed to make it work so far. Am I missing something?
Also, how can I make my initial guesses for the parameter A, B and C?