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

Function dnbinom

inst/include/Rcpp/Rmath.h:128–128  ·  view source on GitHub ↗

Negative Binomial Distribution */

Source from the content-addressed store, hash-verified

126
127 /* Negative Binomial Distribution */
128 inline double dnbinom(double x, double sz, double pb, int lg) { return ::Rf_dnbinom(x, sz, pb, lg); }
129 inline double pnbinom(double x, double sz, double pb, int lt, int lg) { return ::Rf_pnbinom(x, sz, pb, lt, lg); }
130 inline double qnbinom(double p, double sz, double pb, int lt, int lg) { return ::Rf_qnbinom(p, sz, pb, lt, lg); }
131 inline double rnbinom(double sz, double pb) { return ::Rf_rnbinom(sz, pb); }

Callers 1

runit_dnbinomFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected