Skip to content

Commit

Permalink
Apply further pkg::fun
Browse files Browse the repository at this point in the history
See #86
  • Loading branch information
damianooldoni committed Sep 8, 2022
1 parent e177025 commit 7f4fb26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/visualize_pathways_year_level1.R
Original file line number Diff line number Diff line change
Expand Up @@ -468,13 +468,13 @@ visualize_pathways_year_level1 <- function(
max_n <- max(data_top_graph$n)
top_graph <-
ggplot2::ggplot(data_top_graph) +
ggplot2::geom_line(aes(
ggplot2::geom_line(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level1,
color = .data$pathway_level1
)) +
geom_point(aes(
ggplot2::geom_point(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level1,
Expand Down Expand Up @@ -508,13 +508,13 @@ visualize_pathways_year_level1 <- function(
max_n <- max(data_facet_graph$n)
facet_graph <-
ggplot2::ggplot(data_facet_graph) +
ggplot2::geom_line(aes(
ggplot2::geom_line(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level1,
color = .data$pathway_level1
)) +
geom_point(aes(
ggplot2::geom_point(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level1,
Expand Down

0 comments on commit 7f4fb26

Please sign in to comment.