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

Function runit_pnchisq

inst/tinytest/cpp/stats.cpp:160–167  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

158
159// [[Rcpp::export]]
160List runit_pnchisq( NumericVector xx ){
161 return List::create(
162 _["lowerNoLog"] = pnchisq( xx, 6.0, 2.5, true ),
163 _["lowerLog"] = pnchisq( xx, 6.0, 2.5, true, true ),
164 _["upperNoLog"] = pnchisq( xx, 6.0, 2.5, false ),
165 _["upperLog"] = pnchisq( xx, 6.0, 2.5, false, true )
166 );
167}
168
169// [[Rcpp::export]]
170List runit_pchisq( NumericVector xx){

Callers

nothing calls this directly

Calls 1

pnchisqFunction · 0.85

Tested by

no test coverage detected