See the documentation for your object's class:
estimate_link is a shortcut to estimate_response with data = "grid". estimate_response would be used in the context of generating actual predictions for the existing or new data, whereas estimate_link is more relevant in the context of visualisation and plotting.
estimate_response( model, data = NULL, transform = "response", random = FALSE, length = 25, preserve_range = TRUE, ... ) estimate_link( model, data = "grid", transform = "response", random = FALSE, length = 25, preserve_range = TRUE, ... )
| model | A statistical model. |
|---|---|
| data | A data frame with model's predictors to estimate the response. If NULL, the model's data is used. If "grid", the model matrix is obtained (through |
| transform | Can be |
| random | Should it take the random effects into account? Can be |
| length | Passed to |
| preserve_range | Passed to |
| ... | Arguments passed to or from other methods. |
A data frame of predicted values.