I’m a PyMC3 beginner, I started three weeks ago to familiarize myself with it and I’m doing currently a learning work so I have one doubt in my program. Sorry if it is a stupid question.
I have that model:
with pm.Model() as clientes:
name_clients = pm.Bound(pm.Geometric, upper=100)('nombres_clientes', p=0.02685)
age_clients = pm.TruncatedNormal('edad.clientes', mu=34, sigma=24, lower=0.0,
upper=101.0)
As you can see, both distributions are limited between ranges (name_clients between 1 and 100, and age_clients between 0 and 101).
My question is about, how can I know the probability(between 0 and 1), for example, that name_clients is 67 ? And what is the conditional probability if I have age_clients = 21 and name_clients = 34 ?
I was looking a lot of topics and reviews but I don’t have a clear idea about this. If you can help me, I will be very grateful :)