Data Prep Sheet

Action Principale : frontierProd

Preparation Code

Script awaiting validation
Copied!
1 
2DATA casuser.production_data;
3call streaminit(12345);
4DO i = 1 to 200;
5log_K = rand('Normal', 10, 1);
6log_L = rand('Normal', 5, 0.5);
7v = rand('Normal', 0, 0.1);
8u = abs(rand('Normal', 0, 0.2));
9log_Y = 1 + 0.7*log_K + 0.3*log_L + v - u;
10OUTPUT;
11END;
12 
13RUN;
14 
15PROC CASUTIL;
16load
17DATA=casuser.production_data casout="production_data" replace;
18 
19RUN;
20 
Actions using this script
  • frontier frontierProd En cours
  • No other action uses this exact script.