Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. House1=read.csv("house_test.csv",stringsAsFactors = FALSE)
  2.  
  3. House_predict = predict(modelo, House1)
  4.  
  5.  
  6. prediction = House_predict(sqft_living, price, modelo$fitted.values)
  7. names(prediction) = c("id", "sqft_living", "price", "precioestimado")
  8.  
  9. prediction = House_predict(sqft_living, price, modelo$fitted.values)
  10. Error in House_predict(sqft_living, price, modelo$fitted.values) :
  11. could not find function "House_predict"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement