Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upRemove support for predictions without specified data #27
Comments
leeper
added
the
enhancement
label
Aug 5, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
leeper commentedAug 5, 2018
prediction()
without new data. People can usefitted()
for that instead. The default will continue to return predictions for the data used to estimate the model viafind_data()
data
/newdata
is not allowedThis is needed because of the complexities introduced by
at
and #17, which for non-linear models require two calls topredict()
the second of which requiresdata
(and, ifat
, that argument also).