forked from aloctavodia/Doing_bayesian_data_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
19_ANOVAtwowayPyMC.py
236 lines (193 loc) · 7.72 KB
/
19_ANOVAtwowayPyMC.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
"""
Two way BANOVA
"""
from __future__ import division
import numpy as np
import pymc3 as pm
import pandas as pd
import matplotlib.pyplot as plt
plt.style.use('seaborn-darkgrid')
from scipy.stats import norm
from theano import tensor as tt
# THE DATA.
# Specify data source:
data_source = ["QianS2007" , "Salary" , "Random" , "Ex19.3"][1]
# Load the data:
if data_source == "QianS2007":
data_record = pd.read_csv("QianS2007SeaweedData.txt")
# Logistic transform the COVER value:
# Used by Appendix 3 of QianS2007 to replicate Ramsey and Schafer (2002).
data_record['COVER'] = -np.log((100/data_record['COVER']) -1)
y = data_record['COVER'].values
x1 = pd.Categorical(data_record['TREAT']).codes
x1names = data_record['TREAT'].values
x2 = pd.Categorical(data_record['BLOCK']).codes
x2names = data_record['BLOCK'].values
Ntotal = len(y)
Nx1Lvl = len(set(x1))
Nx2Lvl = len(set(x2))
x1contrastDict = {'f_Effect':[1/2, -1/2, 0, 1/2, -1/2, 0],
'F_Effect':[0, 1/2, -1/2, 0, 1/2, -1/2],
'L_Effect':[1/3, 1/3, 1/3, -1/3, -1/3, -1/3 ]}
x2contrastDict = None # np.zeros(Nx2Lvl)
x1x2contrastDict = None # np.zeros(Nx1Lvl*Nx2Lvl, Nx1Lvl)
if data_source == "Salary":
data_record = pd.read_csv("Salary.csv")
y = data_record['Salary']
x1 = pd.Categorical(data_record['Org']).codes
x1names = data_record['Org'].unique()
x1names.sort()
x2 = pd.Categorical(data_record['Post']).codes
x2names = data_record['Post'].unique()
x2names.sort()
Ntotal = len(y)
Nx1Lvl = len(set(x1))
Nx2Lvl = len(set(x2))
x1contrastDict = {'BFINvCEDP':[1, -1, 0, 0],
'CEDPvTHTR':[0, 1, 0, -1]}
x2contrastDict = {'FT1vFT2':[1, -1, 0],
'FT2vFT3':[0,1,-1]}
x1x2contrastDict = {'CHEMvTHTRxFT1vFT3':np.outer([0, 0, 1, -1], [1,0,-1]),
'BFINvOTHxFT1vOTH':np.outer([1, -1/3, -1/3, -1/3], [1, -1/2, -1/2])}
if data_source == "Random":
np.random.seed(47405)
ysdtrue = 3
a0true = 100
a1true = np.array([2, 0, -2]) # sum to zero
a2true = np.array([3, 1, -1, -3]) # sum to zero
a1a2true = np.array([[1,-1,0, 0], [-1,1,0,0], [0,0,0,0]])
npercell = 8
index = np.arange(len(a1true)*len(a2true)*npercell)
data_record = pd.DataFrame(index=index, columns=["y","x1","x2"])
rowidx = 0
for x1idx in range(0, len(a1true)):
for x2idx in range(0, len(a2true)):
for subjidx in range(0, npercell):
data_record['x1'][rowidx] = x1idx
data_record['x2'][rowidx] = x2idx
data_record['y'][rowidx] = float(a0true + a1true[x1idx] + a2true[x2idx]
+ a1a2true[x1idx, x2idx] + norm.rvs(loc=0, scale=ysdtrue, size=1)[0])
rowidx += 1
y = data_record['y']
x1 = pd.Categorical(data_record['x1']).codes
x1names = data_record['x1'].unique()
x2 = pd.Categorical(data_record['x2']).codes
x2names = data_record['x2'].unique()
Ntotal = len(y)
Nx1Lvl = len(set(x1))
Nx2Lvl = len(set(x2))
x1contrast_dict = {'X1_1v3': [1, 0, -1]} #
x2contrast_dict = {'X2_12v34':[1/2, 1/2, -1/2, -1/2]} #
x1x2contrast_dict = {'IC_11v22': np.outer([1, -1, 0], [1, -1, 0, 0]),
'IC_23v34': np.outer([0, 1, -1], [0, 0, 1, -1])}
if data_source == 'Ex19.3':
y = [101,102,103,105,104, 104,105,107,106,108, 105,107,106,108,109, 109,108,110,111,112]
x1 = [0,0,0,0,0, 0,0,0,0,0, 1,1,1,1,1, 1,1,1,1,1]
x2 = [0,0,0,0,0, 1,1,1,1,1, 0,0,0,0,0, 1,1,1,1,1]
S = [0,1,2,3,4, 0,1,2,3,4, 0,1,2,3,4, 0,1,2,3,4]
x1names = ['x1.1' ,'x1.2']
x2names = ['x2.1', "x2.2"]
Snames = ['S1', 'S2', 'S3', 'S4', 'S5']
Ntotal = len(y)
Nx1Lvl = len(set(x1))
Nx2Lvl = len(set(x2))
NSLvl = len(set(S))
x1contrast_dict = {'X1.2vX1.1':[-1 , 1]}
x2contrast_dict = {'X2.2vX2.1':[-1 , 1]}
x1x2contrast_dict = None #np.arange(0, Nx1Lvl*Nx2Lvl).reshape(Nx1Lvl, -1).T
z = (y - np.mean(y))/np.std(y)
z = (y - np.mean(y))/np.std(y)
# THE MODEL.
with pm.Model() as model:
# define the hyperpriors
a1_SD_unabs = pm.StudentT('a1_SD_unabs', mu=0, lam=0.001, nu=1)
a1_SD = abs(a1_SD_unabs) + 0.1
a1tau = 1 / a1_SD**2
a2_SD_unabs = pm.StudentT('a2_SD_unabs', mu=0, lam=0.001, nu=1)
a2_SD = abs(a2_SD_unabs) + 0.1
a2tau = 1 / a2_SD**2
a1a2_SD_unabs = pm.StudentT('a1a2_SD_unabs', mu=0, lam=0.001, nu=1)
a1a2_SD = abs(a1a2_SD_unabs) + 0.1
a1a2tau = 1 / a1a2_SD**2
# define the priors
sigma = pm.Uniform('sigma', 0, 10) # y values are assumed to be standardized
tau = 1 / sigma**2
a0 = pm.Normal('a0', mu=0, tau=0.001) # y values are assumed to be standardized
a1 = pm.Normal('a1', mu=0 , tau=a1tau, shape=Nx1Lvl)
a2 = pm.Normal('a2', mu=0 , tau=a2tau, shape=Nx2Lvl)
a1a2 = pm.Normal('a1a2', mu=0 , tau=a1a2tau, shape=[Nx1Lvl, Nx2Lvl])
b1 = pm.Deterministic('b1', a1 - tt.mean(a1))
b2 = pm.Deterministic('b2', a2 - tt.mean(a2))
b1b2 = pm.Deterministic('b1b2', a1a2 - tt.mean(a1a2))
mu = a0 + b1[x1] + b2[x2] + b1b2[x1, x2]
# define the likelihood
yl = pm.Normal('yl', mu=mu, tau=tau, observed=z)
# Generate a MCMC chain
trace = pm.sample(2000)
# EXAMINE THE RESULTS
# Print summary for each trace
#pm.summary(trace)
# Check for mixing and autocorrelation
#pm.autocorrplot(trace, vars=model.unobserved_RVs[:-1])
## Plot KDE and sampled values for each parameter.
pm.traceplot(trace)
# Extract values of 'a'
a0_sample = trace['a0']
b1_sample = trace['b1']
b2_sample = trace['b2']
b1b2_sample = trace['b1b2']
b0_sample = a0_sample * np.std(y) + np.mean(y)
b1_sample = b1_sample * np.std(y)
b2_sample = b2_sample * np.std(y)
b1b2_sample = b1b2_sample * np.std(y)
plt.figure(figsize=(25,20))
ax = plt.subplot(451)
pm.plot_posterior(b0_sample, bins=50, ax=ax)
ax.set_xlabel(r'$\beta0$')
ax.set_title('Baseline')
plt.xlim(b0_sample.min(), b0_sample.max());
count = 2
for i in range(len(b1_sample[0])):
ax = plt.subplot(4, 5, count)
pm.plot_posterior(b1_sample[:,i], ax=ax)
ax.set_xlabel(r'$\beta1_{}$'.format(i))
ax.set_title('x1: {}'.format(x1names[i]))
count += 1
for i in range(len(b2_sample[0])):
ax = plt.subplot(4, 5, count)
pm.plot_posterior(b2_sample[:,i], bins=50, ax=ax)
ax.set_xlabel(r'$\beta2_{}$'.format(i)),
ax.set_title('x1: {}'.format(x2names[i]))
count += 1
for j in range(len(b1_sample[0])):
ax = plt.subplot(4, 5, count)
pm.plot_posterior(b1b2_sample[:,j,i], bins=50, ax=ax)
ax.set_title('x1: {}, x2: {}'.format(x1names[j], x2names[i]))
ax.set_xlabel(r'$\beta12_{}{}$'.format(i, j))
count += 1
plt.tight_layout()
plt.savefig('Figure_19.4.png')
## Display contrast analyses
plt.figure(figsize=(10, 12))
count = 1
for key, value in x1contrastDict.items():
contrast = np.dot(b1_sample, value)
ax = plt.subplot(3, 2, count)
pm.plot_posterior(contrast, ref_val=0.0, bins=50, ax=ax)
ax.set_title('Contrast {}'.format(key))
count += 1
for key, value in x2contrastDict.items():
contrast = np.dot(b2_sample, value)
ax = plt.subplot(3, 2, count)
pm.plot_posterior(contrast, ref_val=0.0, bins=50, ax=ax)
ax.set_title('Contrast {}'.format(key))
count += 1
for key, value in x1x2contrastDict.items():
contrast = np.tensordot(b1b2_sample, value)
ax = plt.subplot(3, 2, count)
pm.plot_posterior(contrast, ref_val=0.0, bins=50, ax=ax)
ax.set_title('Contrast {}'.format(key))
count += 1
plt.tight_layout()
plt.savefig('Figure_19.5.png')
plt.show()