Skip to content

Commit

Permalink
small edit to address possible gp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosen48 committed Feb 19, 2024
1 parent e16bc75 commit 8bc79ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/cop_pse_auxiliary.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ cal_delta_star <- function(FR2max,
est_uncond,
rxz,
n_obs) {
if (FR2max > .99) {FR2max <-.99}
if (FR2max > .99) else {
FR2max <- .99
}
#if (FR2max < R2 + inci) {FR2max = R2 + inci} check with Ken what this means
if (FR2max > R2) {D <- sqrt(FR2max - R2)}

Expand Down

0 comments on commit 8bc79ef

Please sign in to comment.