BookmarkSubscribeRSS Feed
declanjohn
Calcite | Level 5

Need a coding template to perform the below tasks in SAS. Thanks in advance.

1) Import the data from air_pollution.csv to SAS (3)

Weather in Beijing

  1. 2)  Produce the frequencies of all values of combined wind direction (cbwd) (from most frequent to least frequent) (2)
  2. 3)  What is the most frequently occurring wind direction? (1)
  3. 4)  Calculate the correlation coefficient between temperature (TEMP) and pressure (PRES) (3)
  4. 5)  Is the correlation positive or negative? What is its strength (very weak/weak/moderate/strong/very strong)? (2)

How does air pollution vary over months?

  1. 6)  Compute the descriptive statistics of pm2_5 by month (3)
  2. 7)  On average, in which month is the pollution level highest, and in which month is it lowest? (2)

Relationship between air pollution and weather

  1. 😎  Build a linear regression model where pm2_5 is a dependent variable, and month, DEWP, TEMP, PRES, cbwd, Iws, Is and Ir are independent variables (8)
  2. 9)  What is the R-squared of this model? Based on the R-squared, does the model fit the data well? (4)
  3. 10)  Create a new variable (high_pm2_5) that takes value 1 if pm2_5 is greater than 150 ug/m^3 and value 0 otherwise (3)

11) Develop a logistic regression model where high_pm2_5 is a dependent variable, and month, DEWP, TEMP, PRES, cbwd, Iws, Is and Ir are independent variables (8)

12) What is the AUC (c statistic) of this model? Based on the AUC, does the model separate high and low pollution levels well? (4)

The worst smog in Beijing

  1. 13)  Create a new data set (avg_air_pollution) and calculate an average pollution level (avg_pm2_5) for each month of each year. Select the variables year, month and avg_pm2_5 (10)
  2. 14)  In which of the 60 analysed months was the average pollution level (avg_pm2_5) highest? This was the worst smog Beijing has experienced for over 50 years (2)
  3. 15)  Based on the new data set, create a pdf report (highest_avg_air_pollution.pdf) that contains the list of those months in which the average pollution level (avg_pm2_5) was greater than 100 ug/m^3. Use the Moonflower style and add a title ("Months With Highest Average Air Pollution") (5)
1 REPLY 1
ballardw
Super User

Since this sounds like homework and you wouldn't learn much if provided "a template" (Note: Template refers to a specific procedure in SAS and NOT general purpose code). I will provide some example procedures to get started:

 


@declanjohn wrote:

Need a coding template to perform the below tasks in SAS. Thanks in advance.

1) Import the data from air_pollution.csv to SAS (3) Proc Import

Weather in Beijing

  1. 2)  Produce the frequencies of all values of combined wind direction (cbwd) (from most frequent to least frequent) (2) Proc Freq
  2. 3)  What is the most frequently occurring wind direction? (1)
  3. 4)  Calculate the correlation coefficient between temperature (TEMP) and pressure (PRES) (3) Proc Corr
  4. 5)  Is the correlation positive or negative? What is its strength (very weak/weak/moderate/strong/very strong)? (2)

How does air pollution vary over months?

  1. 6)  Compute the descriptive statistics of pm2_5 by month (3) Proc Means , BY or Class statement.
  2. 7)  On average, in which month is the pollution level highest, and in which month is it lowest? (2)

Relationship between air pollution and weather

  1. 😎  Build a linear regression model where pm2_5 is a dependent variable, and month, DEWP, TEMP, PRES, cbwd, Iws, Is and Ir are independent variables (8) Proc Reg, GLM of other regression procedures.
  2. 9)  What is the R-squared of this model? Based on the R-squared, does the model fit the data well? (4)
  3. 10)  Create a new variable (high_pm2_5) that takes value 1 if pm2_5 is greater than 150 ug/m^3 and value 0 otherwise (3) Data step

11) Develop a logistic regression model where high_pm2_5 is a dependent variable, and month, DEWP, TEMP, PRES, cbwd, Iws, Is and Ir are independent variables (8) Proc Logistic

12) What is the AUC (c statistic) of this model? Based on the AUC, does the model separate high and low pollution levels well? (4)

The worst smog in Beijing

  1. 13)  Create a new data set (avg_air_pollution) and calculate an average pollution level (avg_pm2_5) for each month of each year. Select the variables year, month and avg_pm2_5 (10) Proc Means or Summary, Class or By statement
  2. 14)  In which of the 60 analysed months was the average pollution level (avg_pm2_5) highest? This was the worst smog Beijing has experienced for over 50 years (2)
  3. 15)  Based on the new data set, create a pdf report (highest_avg_air_pollution.pdf) that contains the list of those months in which the average pollution level (avg_pm2_5) was greater than 100 ug/m^3. Use the Moonflower style and add a title ("Months With Highest Average Air Pollution") (5) Proc Print, Where statement

 

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 909 views
  • 0 likes
  • 2 in conversation