Skip to content

Commit

Permalink
lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 23, 2024
1 parent 37f4943 commit 0eeb6f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/interpret_pd.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ interpret_pd <- function(pd, rules = "default", ...) {
rules <- .match.rules(
rules,
list(
default = rules(c(0.975), c("not significant", "significant"),
default = rules(0.975, c("not significant", "significant"),
name = "default", right = TRUE
),
makowski2019 = rules(c(0.95, 0.97, 0.99, 0.999), c("uncertain", "possibly existing", "likely existing", "probably existing", "certainly existing"),

Check warning on line 36 in R/interpret_pd.R

View workflow job for this annotation

GitHub Actions / lint-changed-files / lint-changed-files

file=R/interpret_pd.R,line=36,col=121,[line_length_linter] Lines should not be more than 120 characters. This line is 153 characters.
Expand Down
2 changes: 1 addition & 1 deletion R/interpret_r2.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ interpret_r2 <- function(r2, rules = "cohen1988") {
cohen1988 = rules(c(0.02, 0.13, 0.26), c("very weak", "weak", "moderate", "substantial"),
name = "cohen1988", right = FALSE
),
falk1992 = rules(c(0.10), c("negligible", "adequate"),
falk1992 = rules(0.10, c("negligible", "adequate"),
name = "falk1992", right = FALSE
),
chin1998 = rules(c(0.19, 0.33, 0.67), c("very weak", "weak", "moderate", "substantial"),
Expand Down

0 comments on commit 0eeb6f5

Please sign in to comment.