Skip to content

Commit

Permalink
set line_alpha = 0.5 in plot_scatterfit of trans_env
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiLiubio committed Jul 26, 2024
1 parent d2a359b commit 1c3f983
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/trans_env.R
Original file line number Diff line number Diff line change
Expand Up @@ -1264,10 +1264,10 @@ trans_env <- R6Class(classname = "trans_env",
#' @param point_size default 5; point size value.
#' @param point_alpha default 0.6; alpha value for the point color transparency.
#' @param line_size default 0.8; line size value.
#' @param line_color default "black"; fitted line color; only available when \code{group = NULL}.
#' @param line_se default TRUE; Whether show the confidence interval for the fitting.
#' @param line_se_color default "grey70"; the color to fill the confidence interval when \code{line_se = TRUE}.
#' @param line_alpha default 1; alpha value for the line color transparency.
#' @param line_color default "black"; fitted line color; only available when \code{group = NULL}.
#' @param line_alpha default 0.5; alpha value for the color transparency of line confidence interval.
#' @param pvalue_trim default 4; trim the decimal places of p value.
#' @param cor_coef_trim default 3; trim the decimal places of correlation coefficient.
#' @param lm_equation default TRUE; whether include the equation in the label when \code{type = "lm"}.
Expand Down Expand Up @@ -1303,10 +1303,10 @@ trans_env <- R6Class(classname = "trans_env",
point_size = 5,
point_alpha = 0.6,
line_size = 0.8,
line_alpha = 1,
line_color = "black",
line_se = TRUE,
line_se_color = "grey70",
line_alpha = 0.5,
pvalue_trim = 4,
cor_coef_trim = 3,
lm_equation = TRUE,
Expand Down
6 changes: 3 additions & 3 deletions man/trans_env.Rd

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

0 comments on commit 1c3f983

Please sign in to comment.