Create a Data Frame of The Resolved Result
This function exports the results from resolve()
to a data frame, which each row represents one installation step. The order of rows is the installation order. By installing packages in the specified order, one can install all the resolved packages without conflicts.
Source: R/installation.R
generate_installation_order.Rd
Create a Data Frame of The Resolved Result
This function exports the results from resolve()
to a data frame, which each row represents one installation step. The order of rows is the installation order. By installing packages in the specified order, one can install all the resolved packages without conflicts.
Arguments
- rang
output from
resolve()
References
Ripley, B. (2005) Packages and their Management in R 2.1.0. R News, 5(1):8--11.
Examples
# \donttest{
if (interactive()) {
graph <- resolve(pkgs = c("openNLP", "LDAvis", "topicmodels", "quanteda"),
snapshot_date = "2020-01-16")
generate_installation_order(graph)
}
# }