Strips the sysreqr_plan class and attributes, returning a plain
data.frame. Equivalent to as.data.frame() on a plan, but provided as a
verb form for users who prefer that style.
See also
Other plan:
is_sysreqr_plan(),
print.sysreqr_plan()
Examples
plan <- check_packages("xml2", platform = "ubuntu-22.04")
df <- as_data_frame(plan)
inherits(df, "sysreqr_plan")
#> [1] FALSE
inherits(df, "data.frame")
#> [1] TRUE
