Print a Screaming Frog bundle
Usage
# S3 method for class 'screaming_frog_bundle'
print(x, ...)Examples
internal <- data.frame(
Address = c("https://example.com/", "https://example.com/a"),
`Status Code` = c("200", "200"),
check.names = FALSE
)
links <- data.frame(
Type = "Hyperlink",
Source = "https://example.com/",
Destination = "https://example.com/a",
Follow = "TRUE",
check.names = FALSE
)
bundle <- screaming_frog_bundle(internal, links, "all_outlinks")
print(bundle)
#> === Screaming Frog Bundle ===
#>
#> Rows
#> Nodes: 2
#> Observations: 1
#> Edges: 1
#> Redirects: 0
#> Canonicals: 0
#>
#> Losses / reconciliation
#> Canonicals off domain: 0
#> Excluded by type: 0
#> Invalid graph endpoints: 0
#> Edge endpoints absent: 0
#> Nodes absent from graph: 0