This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{Verbatim} | |
| \end{Verbatim} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git submodule foreach --recursive git pull origin master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Table : TITLE ------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* --------------------------------------------------------------------------------------------- | |
| ------------------------------------------------------------------------------------------------ | |
| M1 RHCP Paper Appendix | |
| PURPOSE: Appendix materials for M1 RHCP Paper | |
| OUTLINE: | |
| PART 1: Tables for appendix | |
| PART 2: Figures for appendix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --------------------------------------------------------------------------------------------- | |
| // Figures |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################################################################## | |
| # | |
| # .gitignore DIME template | |
| # https://github.com/worldbank/dime-github-trainings/tree/master/GitHub-resources/DIME-GitHub-Templates | |
| # | |
| # We recommend that you create a .gitignore file using GitHub's tools and | |
| # replace the content of that file with the content of this file. Otherwise | |
| # you have to rename this file .gitignore. But if you rename the fine in a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // [ritest] example | |
| // Create randomization program ------------------------------------------------ | |
| cap prog drop my_randomization | |
| prog def my_randomization | |
| syntax , [*] | |
| // Must drop the variable for [ritest]. Make sure to keep it saved somewhere | |
| cap drop treatment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| forv i = 1/26 { | |
| local theLetter : word `i' of `c(ALPHA)' | |
| di "`theLetter'" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *Part I* | |
| *** Setup | |
| clear all //clear any open datasets | |
| cls //clear the screen | |
| version 15 | |
| set more off | |
| set linesize 255 | |
| *** Generating a random varibale | |
| set obs 100000 |