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

Function runit_qbinom_prob

inst/tinytest/cpp/stats.cpp:216–221  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

214
215// [[Rcpp::export]]
216List runit_qbinom_prob( NumericVector xx, int n, double p){
217 return List::create(
218 _["lower"] = qbinom( xx, n, p ),
219 _["upper"] = qbinom( xx, n, p, false)
220 );
221}
222
223// [[Rcpp::export]]
224List runit_qunif_prob( NumericVector xx ){

Callers

nothing calls this directly

Calls 1

qbinomFunction · 0.85

Tested by

no test coverage detected