Hello,
I do prediction in R that is displayed on shiny and if the calculation works, it displays the predition not like for example: "526" but in a raw manner :"
" .pred
1 526
"
or with another ols model like this:
[1] 526"
The function i used is based on ols prediction and is called on shiny with:
renderPrint({ (data.frame( (predict(ols_model, new_data = newdata(), interval = "confidence", level = 0.95)) )) })
Please, what should i do?
Thank you