Skip to content

Commit

Permalink
Apply #86 where missing pkg::
Browse files Browse the repository at this point in the history
  • Loading branch information
damianooldoni committed Sep 8, 2022
1 parent 7f4fb26 commit 4b5c925
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/visualize_pathways_year_level2.R
Original file line number Diff line number Diff line change
Expand Up @@ -528,13 +528,13 @@ visualize_pathways_year_level2 <- 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_level2,
color = .data$pathway_level2
)) +
ggplot2::geom_point(aes(
ggplot2::geom_point(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level2,
Expand Down Expand Up @@ -568,13 +568,13 @@ visualize_pathways_year_level2 <- 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_level2,
color = .data$pathway_level2
)) +
ggplot2::geom_point(aes(
ggplot2::geom_point(ggplot2::aes(
x = .data$bins_first_observed,
y = .data$n,
group = .data$pathway_level2,
Expand Down

0 comments on commit 4b5c925

Please sign in to comment.