Materials for the SER 2023 "ABC's of M-estimation" workshop with support for SAS, R, and Python.
Materials and workshop created by: Paul Zivich, Rachael Ross, Stephen Cole
Copy the files from this repository to your computer that will be used during the session. This can be done directly
using your GitHub account. Alternatively, you can click the <> Code
button on the top of this repository, navigate to
the Local
tab, and click Download ZIP
to manually download.
In the code/
folder, find the file corresponding to your preferred software program and open it in your preferred
editor. Then follow the directions below to ensure your computer is properly set up for the workshop:
- Open mean.sas and run the entire script.
Output should:
- Generate output in the Results Viewer that consists of a data set with the columns B, SANDWICH, SE, lcl, and ucl. The values should be 8, 13.6, 3.68782, 0.77188, and 15.2281, respectively.
- No errors should be produced in the log file.
- Install the following libraries:
- tidyverse, numDeriv, rootSolve, geex
- Open mean.R and run the entire script
Output should:
Estimated mean
Closed-form: 8.000
Root-finder: 8.000
95% CI: [ 0.772 15.228]
Geex: [8.000]
95% CI: [ 0.772 15.228]
- No errors should be produced.
- Install the following libraries:
- NumPy, SciPy, pandas, statsmodels, delicatessen
- The version of SciPy must be at least 1.9.0 for the provided code to function properly
- Open mean.py (or mean.ipynb) and run the entire script
Output should be:
Closed-form: 8.0
Root-finder: 8.0
95% CI: [ 0.772 15.228]
Deli: [8.]
95% CI: [[ 0.772 15.228]]
- No errors should be produced.
If you have problems or encounter errors, please open an issue on the GitHub page or email me at [email protected]
1:00 - 1:15 Introductions and start-up
1:15 - 2:15 Introduction to M-estimation
2:15 - 2:30 Break
2:30 - 3:45 Applications
3:45 - 4:00 Break
4:00 - 5:00 Concluding discussion