python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Posterior predictive check in PyMC3, discrete distributions
I want to implement a basic model of capture and recapture in PyMC3 (you capture 100 animals and mark them, then you liberate them and recapture 100 of them after they have mixed and annotate how many...
David
Votes: 0
Answers: 1
SciPy error: RuntimeWarning: overflow encountered in _beta_ppf
My SciPy version is 1.7.3 and I'm running on an Apple M1 chip (not sure if it's relevant). My Python version is 3.9.11, installed via Annaconda.
I get the error message /opt/anaconda3/lib/python3.9/si...
ramund
Votes: 0
Answers: 2
How to calculate the probability at a given condition when I know the outcome in pymc3?
import arviz as az
import matplotlib.pyplot as plt
import numpy as np
import pymc3 as pm
from pymc3.math import dot, exp
import pandas as pd
trace = pm.sample(
10000,
...
Ankur
Votes: 0
Answers: 0
Strange result from pymc3 for small change in the variable
I have below model for which I seek estimation of parameters using pymc3
import pandas as pd
import pymc3 as pm
import arviz as arviz
myData = pd.DataFrame.from_dict({
'Unnamed: 0': {
0: ...
Bogaso
Votes: 0
Answers: 1