View source: R/install_suggested.R
install_suggested | R Documentation |
In easystats
, we have a 0-dependency policy, which makes our packages
fairly light and fast to install. However, we rely on many many (many)
packages for testing (at least all the packages for functions that we
support) and some specific features. These "soft dependencies" can be
downloaded at once using this function. This will allow you to fully utilize
all of easystats' functionalities without errors.
install_suggested(package = "easystats")
show_suggested(package = "easystats")
show_reverse_dependencies(package = "easystats")
package |
If |
To reduce the dependency load, 'easystats' packages by default will not
download all internally needed packages. It will ask the user to download
them only if they are needed. The current function can help install all
packages a given 'easystats' package might need. For example,
install_suggested("see")
. show_suggested()
is a convenient helper
to show the current list of suggested packages for each 'easystats'
package.
Useful only for its side-effect of installing the needed packages.
# download all suggested packages
if (FALSE) {
install_suggested("easystats")
}
# listing all reverse dependencies of easystats packages
show_reverse_dependencies()
# listing all soft/weak dependencies of easystats packages
show_suggested()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.