# library(mitre)
This is a basic example which shows you how to view shield tactics ids and names:
# shield.tactics[, c("id", "name")]
This example shows the distribution of vulnerability risk:
# hist(cve.nist$cvss3.score,
# main = "CVE risk distribution", xlab = "cvss3")
This code shows you the type of nodes for each standard:
# mitrenet <- build_network(as_igraph = FALSE)
# table(mitrenet$nodes$type, mitrenet$nodes$group)
And the type of relationships:
# table(mitrenet$edges$label)