Elapsed Time in pystan

Does the fitted model object in pystan contain the elapsed time of the sampler? I poked around the object / Google and couldn’t find anything. Thanks!

The Fit does not contain the time elapsed. You could get calculate this
yourself by doing something like:

import time
t0 = time.time()
# do the fit
elapsed_seconds = time.time() - t0

Got it. Thanks!