Skip to content

Instantly share code, notes, and snippets.

@sumituk1
Created October 20, 2016 20:50
Show Gist options
  • Save sumituk1/847f725a7893b25bd329aefb9d1e0481 to your computer and use it in GitHub Desktop.
Save sumituk1/847f725a7893b25bd329aefb9d1e0481 to your computer and use it in GitHub Desktop.
import pymc3 as pm
import matplotlib.pyplot as plt
import numpy as np
import theano
size = 100
true_intercept = 1
true_slope = 2
x = np.linspace(0, 1, size)
# y = a + b*x
true_regression_line = true_intercept + true_slope * x
# add noise
y = true_regression_line + np.random.normal(scale=.5, size=size)
# Add outliers
x_out = np.append(x, [.1, .15, .2])
y_out = np.append(y, [8, 6, 9])
data = dict(x=x_out, y=y_out)
# fig = plt.figure(figsize=(7, 7))
# ax = fig.add_subplot(111, xlabel='x', ylabel='y', title='Generated data and underlying model')
# ax.plot(x_out, y_out, 'x', label='sampled data')
# ax.plot(x, true_regression_line, label='true regression line', lw=2.)
# plt.legend(loc=0)
with pm.Model() as model_robust:
family = pm.glm.families.StudentT()
pm.glm.glm('y ~ x', data, family=family)
start = pm.find_MAP()
step = pm.NUTS(scaling=start)
trace_robust = pm.sample(300, step, progressbar=True)
pm.traceplot(trace_robust)
plt.figure(figsize=(5, 5))
plt.plot(x_out, y_out, 'x')
pm.glm.plot_posterior_predictive(trace_robust,
label='posterior predictive regression lines')
plt.plot(x, true_regression_line,
label='true regression line', lw=3., c='y')
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment