From 4b5c925edcf4db0b159d62681600c3673eadfa0f Mon Sep 17 00:00:00 2001 From: Damiano Oldoni Date: Thu, 8 Sep 2022 15:09:27 +0200 Subject: [PATCH] Apply #86 where missing pkg:: --- R/visualize_pathways_year_level2.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/visualize_pathways_year_level2.R b/R/visualize_pathways_year_level2.R index 74f58e24..6b8dcf88 100644 --- a/R/visualize_pathways_year_level2.R +++ b/R/visualize_pathways_year_level2.R @@ -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, @@ -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,