Skip to content

Commit 15ca4dc

Browse files
committed
Add some more missing prefixes
1 parent d82ec2c commit 15ca4dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

R/tm_g_bivariate.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ bivariate_ggplot_call <- function(x_class,
893893
} else {
894894
plot_call <- reduce_plot_call(
895895
plot_call,
896-
quote(ggplot2::geom_histogram(bins = 30, aes(y = ggplot2::after_stat(density)))),
896+
quote(ggplot2::geom_histogram(bins = 30, ggplot2::aes(y = ggplot2::after_stat(density)))),
897897
quote(ggplot2::geom_density(ggplot2::aes(y = ggplot2::after_stat(density)))),
898898
quote(ggplot2::ylab("Density"))
899899
)

R/tm_g_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ srv_distribution <- function(id,
814814
)
815815
} else if (length(s_var) != 0 && length(g_var) == 0) {
816816
substitute(
817-
expr = ggplot2::ggplot(ANL, aes(dist_var_name, col = s_var_name)) +
817+
expr = ggplot2::ggplot(ANL, ggplot2::aes(dist_var_name, col = s_var_name)) +
818818
ggplot2::geom_histogram(
819819
position = "identity", ggplot2::aes(y = ggplot2::after_stat(m_type), fill = s_var),
820820
bins = bins_var, alpha = 0.3

R/tm_variable_browser.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ plot_var_summary <- function(var,
715715
var <- if (isTRUE(remove_NA_hist)) as.vector(stats::na.omit(var)) else var
716716
ggplot2::ggplot(data.frame(var), ggplot2::aes(x = forcats::fct_infreq(as.factor(var)))) +
717717
ggplot2::geom_bar(
718-
stat = "count", aes(fill = ifelse(is.na(var), "withcolor", "")), show.legend = FALSE
718+
stat = "count", ggplot2::aes(fill = ifelse(is.na(var), "withcolor", "")), show.legend = FALSE
719719
) +
720720
ggplot2::scale_fill_manual(values = c("gray50", "tan"))
721721
}

0 commit comments

Comments
 (0)