Examples for 'broom::tidy.power.htest'


Tidy a(n) power.htest object

Aliases: tidy.power.htest

Keywords:

### ** Examples


ptt <- power.t.test(n = 2:30, delta = 1)
tidy(ptt)
# A tibble: 29 × 5
       n delta    sd sig.level  power
   <int> <dbl> <dbl>     <dbl>  <dbl>
 1     2     1     1      0.05 0.0913
 2     3     1     1      0.05 0.157 
 3     4     1     1      0.05 0.222 
 4     5     1     1      0.05 0.286 
 5     6     1     1      0.05 0.347 
 6     7     1     1      0.05 0.406 
 7     8     1     1      0.05 0.461 
 8     9     1     1      0.05 0.513 
 9    10     1     1      0.05 0.562 
10    11     1     1      0.05 0.607 
# … with 19 more rows
library(ggplot2)

ggplot(tidy(ptt), aes(n, power)) +
  geom_line()
plot of chunk example-broom-tidy.power.htest-1

[Package broom version 0.8.0 Index]