Skip to contents

Summarize a Screaming Frog bundle

Usage

# S3 method for class 'screaming_frog_bundle'
summary(object, ...)

Arguments

object

A `screaming_frog_bundle` object.

...

Unused; for S3 compatibility.

Value

A compact named list of row counts and reconciliation counts.

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")
summary(bundle)
#> $nodes
#> [1] 2
#> 
#> $observations
#> [1] 1
#> 
#> $edges
#> [1] 1
#> 
#> $redirects
#> [1] 0
#> 
#> $canonicals
#> [1] 0
#> 
#> $canonicals_off_domain
#> [1] 0
#> 
#> $excluded_type_rows
#> [1] 0
#> 
#> $dropped_invalid_endpoints
#> [1] 0
#> 
#> $absent_internal_edge_endpoints
#> [1] 0
#> 
#> $nodes_absent_from_graph
#> [1] 0
#> 
#> attr(,"class")
#> [1] "summary.screaming_frog_bundle"