fork download
  1. // Open the Marketing Analytics dataset
  2. use "Marketing_Analytics.dta", clear
  3.  
  4. // Start a log file
  5. log using "Marketing_Analytics_Log.txt", replace
  6.  
  7. // Task 1: Tabulate the education level of household head and briefly explain the results
  8. tab education_level_household_head
  9.  
Success #stdin #stdout 0.02s 25828KB
stdin
Standard input is empty
stdout
// Open the Marketing Analytics dataset
use "Marketing_Analytics.dta", clear

// Start a log file
log using "Marketing_Analytics_Log.txt", replace

// Task 1: Tabulate the education level of household head and briefly explain the results
tab education_level_household_head