Description Usage Arguments Value See Also Examples
Return predictions from models fit by owl()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | ## S3 method for class 'Owl'
predict(object, x, sigma = NULL, type = "link", simplify = TRUE, ...)
## S3 method for class 'OwlGaussian'
predict(
object,
x,
sigma = NULL,
type = c("link", "response"),
simplify = TRUE,
...
)
## S3 method for class 'OwlBinomial'
predict(
object,
x,
sigma = NULL,
type = c("link", "response", "class"),
simplify = TRUE,
...
)
## S3 method for class 'OwlPoisson'
predict(
object,
x,
sigma = NULL,
type = c("link", "response"),
exact = FALSE,
simplify = TRUE,
...
)
## S3 method for class 'OwlMultinomial'
predict(
object,
x,
sigma = NULL,
type = c("link", "response", "class"),
exact = FALSE,
simplify = TRUE,
...
)
|
object |
an object of class |
x |
new data |
sigma |
penalty parameter for SLOPE models; if |
type |
type of prediction; |
simplify |
if |
... |
ignored and only here for method consistency |
exact |
if |
Predictions from the model with scale determined by type
.
stats::predict()
, stats::predict.glm()
1 2 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.