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 [22-25]


The marketing team also needs help to identify the products to promote.

You will need to import the COMPUTERS csv file in the DATA FILE folder:​
Picture

Read the file the same way as before:
proc import datafile = "/folders/myfolders/Geo-targeting/Data Files/computers.csv"
 out = computers
 dbms = CSV
 replace
 ;
run;

The COMPUTERS table contains the specifications for each computer configuration:
Picture

The table above has the following columns:
  • Configuration
  • Screen size
  • Battery (hours)
  • Ram
  • Processor Speed
  • SSD
  • Hard Drive Size
Next
Already a member? Go to member's area.