File: sas.actual

package info (click to toggle)
golang-github-alecthomas-chroma 0.8.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,332 kB
  • sloc: python: 228; javascript: 79; makefile: 20
file content (13 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
ods listing close;
proc reg data=work.funda edf outest=work.params;
  /* industry-year regression */
  by fyear sic2;
  /* id is necessary for later matching Jackknifed coefficients to firm-year */
  id key;
  /* Jones Model */
  Jones: model tac = inv_at_l drev ppe / noint influence i;
  /* Kothari Model with ROA */
  Kothari: model tac = inv_at_l drevadj ppe roa / noint influence i;
  ods output OutputStatistics=work.outstats InvXPX=work.xpxinv;
run;
ods listing;