[[Rcpp::export]]
| 148 | |
| 149 | // [[Rcpp::export]] |
| 150 | List runit_pf( NumericVector xx ){ |
| 151 | return List::create( |
| 152 | _["lowerNoLog"] = pf( xx, 6.0, 8.0 ), |
| 153 | _["lowerLog"] = pf( xx, 6.0, 8.0, true, true ), |
| 154 | _["upperNoLog"] = pf( xx, 6.0, 8.0, false ), |
| 155 | _["upperLog"] = pf( xx, 6.0, 8.0, false, true ) |
| 156 | ); |
| 157 | } |
| 158 | |
| 159 | // [[Rcpp::export]] |
| 160 | List runit_pnchisq( NumericVector xx ){ |