├── .gitignore ├── Code ├── BCM_Link.sas ├── BCM_Link_MA.sas ├── BX_SDC_Link.sas ├── CCM_Link.sas ├── CCM_Link_Tables_create.sas ├── CCM_Link_Tables_print.sas ├── CRSP-Compustat_reverse.sas └── DSE_Link.sas ├── Examples from 007-CEO ├── 010-Paper_examples.sas ├── Example_AWE.sas ├── Example_CNP.sas ├── Example_PJC.sas ├── Example_TIF.sas └── Example_TMD.sas ├── Paper └── Data matching in corporate governance.tex ├── README.md └── SAS └── Lookup.sas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/BCM_Link.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/BCM_Link.sas -------------------------------------------------------------------------------- /Code/BCM_Link_MA.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/BCM_Link_MA.sas -------------------------------------------------------------------------------- /Code/BX_SDC_Link.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/BX_SDC_Link.sas -------------------------------------------------------------------------------- /Code/CCM_Link.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/CCM_Link.sas -------------------------------------------------------------------------------- /Code/CCM_Link_Tables_create.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/CCM_Link_Tables_create.sas -------------------------------------------------------------------------------- /Code/CCM_Link_Tables_print.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/CCM_Link_Tables_print.sas -------------------------------------------------------------------------------- /Code/CRSP-Compustat_reverse.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/CRSP-Compustat_reverse.sas -------------------------------------------------------------------------------- /Code/DSE_Link.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Code/DSE_Link.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/010-Paper_examples.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/010-Paper_examples.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/Example_AWE.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/Example_AWE.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/Example_CNP.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/Example_CNP.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/Example_PJC.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/Example_PJC.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/Example_TIF.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/Example_TIF.sas -------------------------------------------------------------------------------- /Examples from 007-CEO/Example_TMD.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Examples from 007-CEO/Example_TMD.sas -------------------------------------------------------------------------------- /Paper/Data matching in corporate governance.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/Paper/Data matching in corporate governance.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/README.md -------------------------------------------------------------------------------- /SAS/Lookup.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attilabalogh/012-Matching/HEAD/SAS/Lookup.sas --------------------------------------------------------------------------------