Code
make_null_deps()
Output
# A data frame: 0 x 5
# ... with 5 variables: ref <chr>, type <chr>, package <chr>, op <chr>,
# version <chr>
Code
parse_deps("grid, stats", "Imports")
Output
[[1]]
# A data frame: 0 x 4
# ... with 4 variables: type <chr>, package <chr>, op <chr>, version <chr>
Code
parse_all_deps(c(Imports = NA_character_))
Output
# A data frame: 0 x 5
# ... with 5 variables: ref <chr>, type <chr>, package <chr>, op <chr>,
# version <chr>
Code
parse_all_deps(c(Imports = "grid"))
Output
# A data frame: 0 x 5
# ... with 5 variables: ref <chr>, type <chr>, package <chr>, op <chr>,
# version <chr>
Code
parse_all_deps(c(Imports = "foo (>= 1.0.0), bar", Suggests = "baz, foobaz (>= 2.0.0)"))
Output
# A data frame: 4 x 5
ref type package op version
<chr> <chr> <chr> <chr> <chr>
1 foo Imports foo ">=" "1.0.0"
2 bar Imports bar "" ""
3 baz Suggests baz "" ""
4 foobaz Suggests foobaz ">=" "2.0.0"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.