View source: R/fit-distribution.R
| print.cograph_degree_fit | R Documentation |
Displays the comparison table of fitted distributions sorted by AIC.
## S3 method for class 'cograph_degree_fit'
print(x, digits = 4, ...)
x |
A |
digits |
Number of decimal places. Default 4. |
... |
Additional arguments passed to |
Invisible x.
adj <- matrix(c(0, 1, 1, 0, 0,
1, 0, 1, 1, 0,
1, 1, 0, 1, 1,
0, 1, 1, 0, 1,
0, 0, 1, 1, 0), 5, 5, byrow = TRUE)
fit <- cograph::fit_degree_distribution(adj,
distributions = c("exponential", "poisson"))
print(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.