| summary.borg_result | R Documentation |
Generate a methods section summary for publication from a borg_result object.
## S3 method for class 'borg_result'
summary(
object,
comparison = NULL,
v = 5,
style = c("apa", "nature", "ecology"),
include_citation = TRUE,
...
)
object |
A |
comparison |
Optional. A |
v |
Integer. Number of CV folds. Default: 5. |
style |
Character. Citation style. |
include_citation |
Logical. Include BORG citation. |
... |
Additional arguments (currently unused). |
Character string with methods text (invisibly).
set.seed(42)
data <- data.frame(
x = runif(100, 0, 100),
y = runif(100, 0, 100),
response = rnorm(100)
)
result <- borg(data, coords = c("x", "y"), target = "response")
summary(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.