-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from egouldo/pkgdown-setup
pkgdown setup
- Loading branch information
Showing
11 changed files
with
252 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,6 @@ | |
^\.Rproj\.user$ | ||
_targets.R | ||
|
||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
.RData | ||
.Ruserdata | ||
.DS_Store | ||
*reprex.* | ||
*reprex.* | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
url: ~ | ||
template: | ||
bootstrap: 5 | ||
reference: | ||
- title: "Unprocessed data cleaning and checking" | ||
desc: "Functions for cleaning and QA checking unprocessed analyst data" | ||
- subtitle: "Miscellaneous cleaning functions" | ||
contents: | ||
- rm_inf_na | ||
- anonymise_teams | ||
- clean_response_transformation | ||
- assign_transformation_type | ||
- subtitle: "Working with analyst-provided out-of-sample predictions" | ||
desc: | ||
contents: | ||
- augment_prediction_data | ||
- preprocess_prediction_files | ||
- preprocess_updated_prediction_files | ||
- read_submission_data | ||
- starts_with("validate_predictions") | ||
- title: "Data Processing for Meta-analysis and Modelling" | ||
desc: "Calculating and standardising variables for analysis" | ||
contents: | ||
- est_to_zr | ||
- Z_VZ_preds | ||
- pred_to_Z | ||
- apply_VZ_exclusions | ||
- box_cox_transform | ||
- log_transform | ||
- calculate_deviation_score | ||
- calculate_sorensen_diversity_index | ||
- apply_sorensen_calc | ||
- conversion | ||
- conversion_2 | ||
- convert_predictions | ||
- ends_with("_back") | ||
- back_transform_response_vars_yi | ||
- starts_with("exclude_") | ||
- starts_with("subset_fns") | ||
- standardise_response | ||
- title: "Process and create datasets for analysis" | ||
desc: "Functions for creating datasets ready for meta-analysis or other analyses" | ||
contents: | ||
- make_param_table | ||
- compute_MA_inputs | ||
- compute_metaanalysis_inputs | ||
- get_diversity_data | ||
- starts_with("prepare_") | ||
- title: "Model Fitting & Meta-analysis" | ||
desc: "Functions for fitting meta-analysis and other models described ion *Gould et al. (2023)*" | ||
contents: | ||
- starts_with("fit_") | ||
- title: "Extracting Analysis Outputs & Visualisation" | ||
desc: "Functions for extracting model outputs, and visualising analysis results" | ||
contents: | ||
- gg_forest | ||
- starts_with("plot_") | ||
- i2_ml | ||
- calc_I2_ml | ||
- apportion_heterogeneity_ml | ||
- compare_ml_MA | ||
- get_MA_fit_stats | ||
- run_model_checks | ||
- title: "Scaling Up: Working with data subsets or multiple datasets" | ||
desc: > | ||
Functions for working with multiple datasets or data subsets within a tidyverse list-column framework. | ||
- subtitle: "Wrapper Functions" | ||
desc: "" | ||
contents: | ||
- compute_metaanalysis_inputs | ||
- meta_analyse_datasets | ||
- make_viz | ||
- subtitle: "Generate data subsets of full ManyEcoEvo or ManyAnalyst dataset" | ||
desc: "" | ||
contents: | ||
- starts_with("generate_") | ||
- title: "Utility Functions" | ||
desc: "Miscelaneous utility functions" | ||
contents: | ||
- capwords | ||
- hex_key | ||
- named_group_split |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
citHeader("To cite ManyEcoEvo in publications use:") | ||
|
||
@Manual{, | ||
title = {ManyEcoEvo: Meta-analyse data from 'Many-Analysts' style studies}, | ||
author = {Elliot Gould and Hannah S. Fraser and Shinichi Nakagawa and Timothy H. Parker}, | ||
year = {2023}, | ||
note = {R package version 1.0.0}, | ||
url = {https://github.com/egouldo/ManyEcoEvo}, | ||
} | ||
bibentry( | ||
bibtype = "Article", | ||
title = "ManyEcoEvo: Meta-analyse data from ManyAnalyst style studies", | ||
author = c(person(given = "Elliot", | ||
family = "Gould", | ||
email = "elliot.gould@unimelb.edu.au", | ||
role = c("aut", "cre"), | ||
comment = c(ORCID = "https://orcid.org/0000-0002-6585-538X")), | ||
person(given = "Hannah S.", | ||
family = "Fraser", | ||
role = "aut", | ||
comment = c(ORCID = "https://orcid.org/0000-0003-2443-4463")), | ||
person(given = "Shinichi", | ||
family = "Nakagawa", | ||
role = "aut", | ||
comment = c(ORCID = "https://orcid.org/0000-0002-7765-5182")), | ||
person(given = "Timothy H.", | ||
family = "Parker", | ||
role = "aut", | ||
comment = c(ORCID = "https://orcid.org/0000-0003-2995-5284")) | ||
), | ||
journal = "TBC", | ||
year = "2023", | ||
#note = "R package version 1.3-4", | ||
#url = "https://CRAN.R-project.org/package=boot", | ||
#key = "boot-package" | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters