diff --git a/README.md b/README.md index 6e1db7f..0bff918 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,9 @@ Usage ``` r library(fgeo) -#> -- Attaching packages ----------------------------------------- fgeo 0.0.0.9000 -- -#> v forestr 0.0.0.9000 v bciex 0.0.0.9000 -#> v map 0.0.0.9007 v demography 0.0.0.9000 +#> -- Attaching packages --------------------------------------------------- fgeo 0.0.0.9000 -- +#> v forestr 0.0.0.9000 v bciex 0.0.0.9000 +#> v map 0.0.0.9007 v fgeo.demography 0.0.0.9000 #> ``` @@ -38,7 +38,7 @@ You can see conflicts with other packages with `fgeo_conflicts()`. library(ctfs) #> #> Attaching package: 'ctfs' -#> The following objects are masked from 'package:demography': +#> The following objects are masked from 'package:fgeo.demography': #> #> growth, mortality, recruitment #> The following object is masked from 'package:forestr': @@ -46,24 +46,25 @@ library(ctfs) #> abundance fgeo_conflicts() -#> -- Conflicts ------------------------------------------------- fgeo_conflicts() -- +#> -- Conflicts ----------------------------------------------------------- fgeo_conflicts() -- #> x ctfs::abundance() masks forestr::abundance() -#> x ctfs::growth() masks demography::growth() -#> x ctfs::mortality() masks demography::mortality() -#> x ctfs::recruitment() masks demography::recruitment() +#> x ctfs::growth() masks fgeo.demography::growth() +#> x ctfs::mortality() masks fgeo.demography::mortality() +#> x ctfs::recruitment() masks fgeo.demography::recruitment() ``` **fgeo** installs these packages: ``` r fgeo_packages() -#> [1] "bciex" "cli" "crayon" "demography" "forestr" -#> [6] "map" "purrr" "rstudioapi" "fgeo" +#> [1] "bciex" "cli" "crayon" "fgeo.demography" +#> [5] "forestr" "map" "purrr" "rstudioapi" +#> [9] "fgeo" ``` **fgeo** loads these packages: ``` r fgeo:::core -#> [1] "forestr" "map" "bciex" "demography" +#> [1] "forestr" "map" "bciex" "fgeo.demography" ``` diff --git a/docs/authors.html b/docs/authors.html new file mode 100644 index 0000000..602297e --- /dev/null +++ b/docs/authors.html @@ -0,0 +1,165 @@ + + + +
+ + + + +fgeo installs and loads multiple R packages of ForestGEO in a single step. Together, all packages in fgeo provide a wide renge of tools to analyse forest dynamics.
+ +# To install from a private repo, see auth_token at https://goo.gl/re1LFe
+# install.packages("remotes")
+remotes::install_github("forestgeo/fgeo")
+library(fgeo)
will load the core fgeo packages.
library(fgeo)
+#> -- Attaching packages --------------------------------------------------- fgeo 0.0.0.9000 --
+#> v forestr 0.0.0.9000 v bciex 0.0.0.9000
+#> v map 0.0.0.9007 v fgeo.demography 0.0.0.9000
+#>
You can see conflicts with other packages with fgeo_conflicts()
.
library(ctfs)
+#>
+#> Attaching package: 'ctfs'
+#> The following objects are masked from 'package:fgeo.demography':
+#>
+#> growth, mortality, recruitment
+#> The following object is masked from 'package:forestr':
+#>
+#> abundance
+
+fgeo_conflicts()
+#> -- Conflicts ----------------------------------------------------------- fgeo_conflicts() --
+#> x ctfs::abundance() masks forestr::abundance()
+#> x ctfs::growth() masks fgeo.demography::growth()
+#> x ctfs::mortality() masks fgeo.demography::mortality()
+#> x ctfs::recruitment() masks fgeo.demography::recruitment()
fgeo installs these packages:
+fgeo_packages()
+#> [1] "bciex" "cli" "crayon" "fgeo.demography"
+#> [5] "forestr" "map" "purrr" "rstudioapi"
+#> [9] "fgeo"
fgeo loads these packages:
+fgeo:::core
+#> [1] "forestr" "map" "bciex" "fgeo.demography"
'fgeo' installs and load multiple R packages of ForestGEO in +a single step. Each individual package is a self contained module. Together, +all the packages in 'fgeo' provide a wide renge of tools to analyse +forest dynamics. The modular structure of 'fgeo' makes it easy to add +and maintain more tools as they become available. Learn more about the +'fgeo' package at <http://forestgeo.github.io/fgeo>; and learn +more about ForestGEO at <http://www.forestgeo.si.edu/>.
+ + + +Useful links:
+ + +This function lists all the conflicts between packages in fgeo +and other packages that you have loaded.
+ + +fgeo_conflicts()
+
+
+ +fgeo_conflicts()#> -- Conflicts ----------------------------------------------- fgeo_conflicts() -- +#> x fgeo::library.dynam.unload() masks base::library.dynam.unload() +#> x fgeo::package_version() masks base::package_version() +#> x devtools_shims::system.file() masks fgeo::system.file(), base::system.file()
List all packages in fgeo
+ + +fgeo_packages(include_self = TRUE)+ +
include_self | +Include fgeo in the list? |
+
---|
+fgeo_packages()#> [1] "bciex" "cli" "crayon" "fgeo.demography" +#> [5] "forestr" "map" "purrr" "rstudioapi" +#> [9] "fgeo"