# Consider a treated-control match pair as the unit of measure,
# analogous to one meter or one foot. The calculation
# amplify(4,7) says that, in a matched pair, gamma=4
# is the same a bias that increases the odds of treatment
# 7-fold and increases the odds of positive matched-pair
# difference in outcomes 9-fold.
amplify(4,7)
# It is also true that, in a matched pair, gamma=4
# is the same a bias that increases the odds of treatment
# 9-fold and increases the odds of positive matched-pair
# difference in outcomes 7-fold.
amplify(4,9)
# It is also true that, in a matched pair, gamma=4
# is the same a bias that increases the odds of treatment
# 5-fold and increases the odds of positive matched-pair
# difference in outcomes 19-fold.
amplify(4,5)
# The amplify function can produce the entire curve at once:
amplify(4,5:19)
Run the code above in your browser using DataLab