Skip to content

Commit

Permalink
fixed small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo Bonifazi committed Jun 19, 2024
1 parent f9fbd97 commit 134119c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ importFrom(ggplot2,geom_point)
importFrom(ggplot2,guide_legend)
importFrom(ggplot2,guides)
importFrom(ggsci,scale_color_npg)
importFrom(magrittr,"%>%")
importFrom(purrr,discard)
importFrom(purrr,map)
importFrom(readr,read_file)
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
### Bug fixes

- Corrected bug in `process_retriever` on `Mean Age Fathers` and `Mean Age Mothers` sections for "DUT" language Retriever .out files
- Corrected bug in stacked bar plot to include x-axis start and end limit.

## Version 0.0.0.9002

Expand Down
3 changes: 1 addition & 2 deletions R/compute_deltas.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@
#' @export
#'
#' @importFrom dplyr %>%
#' @importFrom magrittr %>%
#'
#' @examples
#' intervals <- c(2000, 2010, 2020)
#' generation_intervals <- data.frame(Year = 2000:2020, mean_age_both_parents = runif(21, 2, 4))
#' inbreeding <- data.frame(Year = 2000:2020, F_all_animals = runif(21, 0, 0.1), f_exc_self = runif(21, 0, 0.1))
#' inbreeding <- data.frame(Year = 2000:2020, F_all_animals = runif(21, 0, 0.1), f_exc.self = runif(21, 0, 0.1))
#' compute_deltas(intervals, generation_intervals, inbreeding, 2)

compute_deltas <- function(intervals, generation_intervals, inbreeding, round = 2) {
Expand Down

0 comments on commit 134119c

Please sign in to comment.