This file contains 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
options mprint; | |
%macro lowcase(dsn); | |
%let dsid=%sysfunc(open(&dsn)); | |
%let num=%sysfunc(attrn(&dsid,nvars)); | |
%put # | |
data &dsn; | |
set &dsn(rename=( | |
%do i = 1 %to # | |
/*function of varname returns the name of a SAS data set variable*/ | |
%let var&i=%sysfunc(varname(&dsid,&i)); |
This file contains 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
data tmp; | |
merge anncomp(in=ina) some_ceo_year_events(in=inb); | |
by gvkey year execid; | |
flag = inb; | |
if ina; | |
run; |
This file contains 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
/**************************************** | |
* ffind.ado | |
* Creates variable containing Fama-French | |
* industry classification. | |
* | |
* Author: Judson Caskey, UCLA | |
* December 9, 2007 | |
* | |
* Revised by Malcolm Wardlaw, Uiversity of Texas at Dallas (November 1, 2011) | |
****************************************/ |
This file contains 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
<?php | |
/* To resolve the login loop issue */ | |
define('ADMIN_COOKIE_PATH', '/'); | |
define('COOKIE_DOMAIN', ''); | |
define('COOKIEPATH', ''); | |
define('SITECOOKIEPATH', ''); | |
/* end */ | |
/* That's all, stop editing! Happy blogging. */ |
This file contains 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
<VirtualHost *:80> | |
ServerName alice.com | |
DocumentRoot "/opt/bitnami/apache2/htdocs" | |
<Directory "/opt/bitnami/apache2/htdocs"> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
<IfVersion < 2.3 > | |
Order allow,deny | |
Allow from all | |
</IfVersion> |
This file contains 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
sudo apt-get update && sudo apt-get install \ | |
git \ | |
build-essential \ | |
libssl-dev \ | |
libffi-dev \ | |
python-dev \ | |
python-pip \ | |
python-setuptools \ | |
python-virtualenv -y | |
This file contains 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
python -m virtualenv --python=`which python2` env && | |
source env/bin/activate && | |
python -m pip install -U pip virtualenv && | |
python -m pip install -r requirements.txt |
This file contains 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
/* ********************************************************************************* */ | |
/* ************** W R D S R E S E A R C H A P P L I C A T I O N S ************** */ | |
/* ********************************************************************************* */ | |
/* Summary : Tobin's Q and Altman Z Score for Compustat Companies */ | |
/* Date : August 24, 2011 */ | |
/* Author : Rabih Moussawi */ | |
/* Variables : - Computes proxies for Tobin's Q and Altman Z using Financial Ratios */ | |
/* - Proxy for Age of company using number of years with available data */ | |
/* - Adds delisting reason and delisting date information */ | |
/* ********************************************************************************* */ |
This file contains 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
/***************************************** | |
Author unknown - that is a pity because this macro is the best since sliced bread! | |
Trim or winsorize macro | |
* byvar = none for no byvar; | |
* type = delete/winsor (delete will trim, winsor will winsorize; | |
*dsetin = dataset to winsorize/trim; | |
*dsetout = dataset to output with winsorized/trimmed values; | |
*byvar = subsetting variables to winsorize/trim on; |
This file contains 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
/* ********************************************************************************* */ | |
/* ************** W R D S R E S E A R C H A P P L I C A T I O N S ************** */ | |
/* ********************************************************************************* */ | |
/* Summary : Calculate Institutional Ownership, Concentration, and Breadth Ratios */ | |
/* Date : May 18, 2009 */ | |
/* Author : Luis Palacios, Rabih Moussawi, and Denys Glushkov */ | |
/* Variables : - INPUT : Thomson-Reuters 13F Data (TR-13F) S34TYPE3 Holdings data */ | |
/* S34TYPE1 data for FDATE and RDATE variables */ | |
/* - OUTPUT: IO_TimeSeries dataset with IO variables for common stocks */ | |
/* ********************************************************************************* */ |
OlderNewer