Set package dependencies
Package dependencies are crucial in R package development. They ensure the proper functioning of packages by providing required functions, additional functionality, and examples. Dependencies promote code reusability, simplify package installation, and enhance package compatibility. Managing dependencies is essential for developing robust and efficient R packages.
Your boss has requested that you add ggplot2 as a suggested dependency, since some of the examples with our loaded datasets in unitConverter can be visualized well.
The usethis package has been loaded for you.
Deze oefening maakt deel uit van de cursus
Developing R Packages
Oefeninstructies
- Add the
ggplot2package as a suggested dependency with version3.0.0or higher.
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Suggest ggplot2 >= 3.0.0
___