Skip to content

Commit 3c9b4d3

Browse files
committed
Add more prefixes
1 parent 7d8c801 commit 3c9b4d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/tm_a_regression.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ srv_a_regression <- function(id,
604604
plot <- substitute(
605605
expr = ggplot2::ggplot(fit$model[, 2:1], ggplot2::aes_string(regressor, response)) +
606606
ggplot2::geom_point(size = size, alpha = alpha) +
607-
stat_smooth(method = "lm", formula = y ~ x, se = FALSE),
607+
ggplot2::stat_smooth(method = "lm", formula = y ~ x, se = FALSE),
608608
env = list(
609609
regressor = regression_var()$regressor,
610610
response = regression_var()$response,

R/tm_g_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ srv_distribution <- function(id,
869869
if (add_dens_var) {
870870
plot_call <- substitute(
871871
expr = plot_call +
872-
stat_density(
872+
ggplot2::stat_density(
873873
ggplot2::aes(y = ggplot2::after_stat(const * m_type2)),
874874
geom = "line",
875875
position = "identity",

0 commit comments

Comments
 (0)