Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Mar 26, 2024
1 parent 67b7fb4 commit cddf268
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions R/plot.check_model.R
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ plot.see_check_model <- function(x,
show_labels = show_labels,
size_text = size_text,
size_line = size_line,
size_point = size_point,
theme_style = style,
colors = colors,
dot_alpha_level = dot_alpha_level,
Expand Down
8 changes: 7 additions & 1 deletion R/plot.check_outliers_new.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ref.linetype = "dashed",
show_labels = TRUE,
size_line = NULL,
size_point = 2,
size_text = NULL,
theme_style = theme_lucid,
colors = unname(social_colors(c("green", "blue grey", "red"))),
Expand All @@ -23,7 +24,12 @@
p <- ggplot(plot_data, aes(x = .data$Hat, .data$Std_Residuals))

if (isTRUE(show_dots)) {
p <- p + geom_point2(aes(colour = .data$Influential), na.rm = na.rm, alpha = dot_alpha_level)
p <- p + geom_point2(
aes(colour = .data$Influential),
na.rm = na.rm,
alpha = dot_alpha_level,
size = size_point
)
}

p <- p +
Expand Down
2 changes: 1 addition & 1 deletion man/plot.see_check_collinearity.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cddf268

Please sign in to comment.