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
Sentry Page Protection
Please Wait...
Geo-targeting Project [27-25]


The sales transaction data is available in the SALES_Q2 csv file.

Import the file using the code below:
proc import datafile = "/folders/myfolders/Geo-targeting/Data Files/Sales_Q2.csv"
 out = Sales_Q2
 dbms = CSV
 replace
 ;
run;

The SALES_Q2 table contains the sales data in the second quarter of 2017 across the 15 stores in London.
Picture
Next
Already a member? Go to member's area.