histelheim
histelheim

Reputation: 5098

Only getting a single value from predict.nls - why?

I'm running the folllowing to get predicted/fitted values:

library(RCurl)
data <- getURL("https://gist.githubusercontent.com/aronlindberg/a8a6644a639c35ceb9d9/raw/5b7c13bbcd439dacbca70e07c96b6c33804273d2/data.csv")
object <- read.csv(text = data)
mod <- nls(formula = "solution_complexity ~ problem_complexity", data=object, start = list(problem_complexity=0))
predict(mod)

However, this only gives me a single value. How can I get all the predicted values?

Upvotes: 0

Views: 135

Answers (1)

Roman Luštrik
Roman Luštrik

Reputation: 70653

If I do

predict(mod, newdata = object[, "problem_complexity", drop = FALSE])

[1]  2  6  4  3  3  4  8 16  7  5  3 12  4  3  9  2  1  5  1  1  4  6  2  5 

it appears to work.

Upvotes: 1

Related Questions