Distributions .dist.logp()

Hi there,
I’m currently using calls like pm.StudentT.dist(…).logp(…). Unless I’m mistaken in the next PyMC version this doesn’t seem to be possible anymore, could you point me to the right way of doing this?
Cheers,
Vian

In the next version you can call pm.logp(pm.StudentT.dist(...), value) or pm.logcdf(...)

1 Like