Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

prediction of linear model at a single point in R

df <- data.frame(meanValuesHeatingPower = c(1,4,3,7), 
                 meanValuesOutsideTemperature = c(4,3,4,7))

linearModel<-lm(meanValuesHeatingPower ~ meanValuesOutsideTemperature, data = df)

pred<-predict(linearModel, data.frame(meanValuesOutsideTemperature = c(1)))
print(pred)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #prediction #linear #model #single #point #R
ADD COMMENT
Topic
Name
9+4 =