View source: R/link_prediction.R
| print.net_link_prediction | R Documentation |
Print Method for net_link_prediction
## S3 method for class 'net_link_prediction'
print(x, ...)
x |
A |
... |
Additional arguments (ignored). |
The input object, invisibly.
seqs <- data.frame(
V1 = sample(LETTERS[1:4], 30, TRUE),
V2 = sample(LETTERS[1:4], 30, TRUE),
V3 = sample(LETTERS[1:4], 30, TRUE)
)
net <- build_network(seqs, method = "relative")
pred <- predict_links(net)
print(pred)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.