Skip to content

Commit

Permalink
rounded n_saved for chisquare power calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
kappelmann committed Jan 7, 2020
1 parent 1baee91 commit f8bf6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ server <- function(input, output) {
n_trad = n1 - n2_rct
n_total = ceiling(n_trad + n2)
n_ind = n1 + n2
n_saved = n_ind - n_total
n_saved = ceiling(n_ind - n_total)



Expand Down

0 comments on commit f8bf6a9

Please sign in to comment.