├── .gitignore ├── LICENSE ├── README.md ├── SAS ├── Siccodes10.sas ├── Siccodes12.sas ├── Siccodes17.sas ├── Siccodes30.sas ├── Siccodes38.sas ├── Siccodes48.sas ├── Siccodes49.sas └── Siccodes5.sas ├── import ├── Siccodes10.txt ├── Siccodes12.txt ├── Siccodes17.txt ├── Siccodes30.txt ├── Siccodes38.txt ├── Siccodes48.txt ├── Siccodes49.txt └── Siccodes5.txt ├── package.json ├── scripts └── make.js └── templates ├── Siccodes10.txt ├── Siccodes12.txt ├── Siccodes17.txt ├── Siccodes30.txt ├── Siccodes38.txt ├── Siccodes48.txt ├── Siccodes49.txt └── Siccodes5.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/README.md -------------------------------------------------------------------------------- /SAS/Siccodes10.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes10.sas -------------------------------------------------------------------------------- /SAS/Siccodes12.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes12.sas -------------------------------------------------------------------------------- /SAS/Siccodes17.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes17.sas -------------------------------------------------------------------------------- /SAS/Siccodes30.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes30.sas -------------------------------------------------------------------------------- /SAS/Siccodes38.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes38.sas -------------------------------------------------------------------------------- /SAS/Siccodes48.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes48.sas -------------------------------------------------------------------------------- /SAS/Siccodes49.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes49.sas -------------------------------------------------------------------------------- /SAS/Siccodes5.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/SAS/Siccodes5.sas -------------------------------------------------------------------------------- /import/Siccodes10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes10.txt -------------------------------------------------------------------------------- /import/Siccodes12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes12.txt -------------------------------------------------------------------------------- /import/Siccodes17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes17.txt -------------------------------------------------------------------------------- /import/Siccodes30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes30.txt -------------------------------------------------------------------------------- /import/Siccodes38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes38.txt -------------------------------------------------------------------------------- /import/Siccodes48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes48.txt -------------------------------------------------------------------------------- /import/Siccodes49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes49.txt -------------------------------------------------------------------------------- /import/Siccodes5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/import/Siccodes5.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/package.json -------------------------------------------------------------------------------- /scripts/make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/scripts/make.js -------------------------------------------------------------------------------- /templates/Siccodes10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes10.txt -------------------------------------------------------------------------------- /templates/Siccodes12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes12.txt -------------------------------------------------------------------------------- /templates/Siccodes17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes17.txt -------------------------------------------------------------------------------- /templates/Siccodes30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes30.txt -------------------------------------------------------------------------------- /templates/Siccodes38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes38.txt -------------------------------------------------------------------------------- /templates/Siccodes48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes48.txt -------------------------------------------------------------------------------- /templates/Siccodes49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes49.txt -------------------------------------------------------------------------------- /templates/Siccodes5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoostImpink/fama-french-industry/HEAD/templates/Siccodes5.txt --------------------------------------------------------------------------------