Re: Help on code comprehension from an example project of pymc

2015-12-15 Thread Terry Reedy
On 12/15/2015 11:15 AM, Robert wrote: Hi, I find the useful small code project for me: #https://users.obs.carnegiescience.edu/cburns/ipynbs/PyMC.html It runs as expected. When I review the code, I find 'data' in the original line: data = pymc.Normal('data', mu=model, tau=tau, value=z_obs, obs

Re: Help on code comprehension from an example project of pymc

2015-12-15 Thread Chris Angelico
On Wed, Dec 16, 2015 at 3:15 AM, Robert wrote: > When I review the code, I find 'data' in the original line: > > data = pymc.Normal('data', mu=model, tau=tau, value=z_obs, observed=True) > > has not been referenced thereafter. > If I comment out the line as: > > #data = pymc.Normal('data', mu=mode