MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / runit_pf

Function runit_pf

inst/tinytest/cpp/stats.cpp:150–157  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

148
149// [[Rcpp::export]]
150List 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]]
160List runit_pnchisq( NumericVector xx ){

Callers

nothing calls this directly

Calls 1

pfFunction · 0.85

Tested by

no test coverage detected