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

Function runit_ppois

inst/tinytest/cpp/stats.cpp:190–197  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

188
189// [[Rcpp::export]]
190List runit_ppois( NumericVector xx){
191 return List::create(
192 _["lowerNoLog"] = ppois( xx, 0.5 ),
193 _["lowerLog"] = ppois( xx, 0.5, true, true ),
194 _["upperNoLog"] = ppois( xx, 0.5, false ),
195 _["upperLog"] = ppois( xx, 0.5, false, true )
196 );
197}
198
199// [[Rcpp::export]]
200List runit_pt(NumericVector xx){

Callers

nothing calls this directly

Calls 1

ppoisFunction · 0.85

Tested by

no test coverage detected