Search the site...

SASCRUNCH TRAINING
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
Geo-targeting Project [25-25]


Again, we will generate a csv file that contains the five specifications that we are going to promote.
proc sql;
create table product_promo as
select *
from computers
where configuration in (320, 337, 200, 207, 353);
quit;

proc export data=product_promo
   outfile='/folders/myfolders/geo-targeting/output/product_promo.csv'
   dbms=csv
   replace;
run;
Did the code fail?

Copy and run the code below to create the input data sets.

The list of five products for promotion is exported to a csv file:
Picture
Next
Already a member? Go to member's area.