Warning: Undefined variable $jcyhX in /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php on line 1

Warning: Undefined variable $ettTubkWQB in /home/supremepapers/public_html/qualityassignments.net/wp-includes/nav-menu.php on line 1

Warning: Undefined variable $UUWaafE in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 1

Deprecated: Implicit conversion from float 1.7333333333333334 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Deprecated: Implicit conversion from float 1.7333333333333334 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Deprecated: Implicit conversion from float 2.5 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794
{"id":33705,"date":"2021-07-20T16:57:11","date_gmt":"2021-07-20T16:57:11","guid":{"rendered":"https:\/\/qualityassignments.net\/?p=33705"},"modified":"2021-07-20T16:57:11","modified_gmt":"2021-07-20T16:57:11","slug":"urgent-homework-help-21516","status":"publish","type":"post","link":"https:\/\/qualityassignments.net\/2021\/07\/20\/urgent-homework-help-21516\/","title":{"rendered":"use sas to solve questions"},"content":{"rendered":"<\/p>\n

Regression Analysis on House Price in Chicago<\/p>\n

Basic concepts on regression analysis.<\/p>\n

We have the following Chicago community data on SAS. <\/p>\n

\/* Chicago Community *\/<\/p>\n

filename webdat url “https:\/\/bigblue.depaul.edu\/jlee141\/econdata\/eco520\/chicago_cca.csv” ;<\/p>\n

\/* Import Chicago Community data*\/<\/p>\n

PROC IMPORT OUT= chicago_cca<\/p>\n

DATAFILE= webdat DBMS=CSV REPLACE;<\/p>\n

RUN;<\/p>\n

proc contents ; run ;<\/p>\n

data community ; set chicago_cca ;<\/p>\n

income = income\/1000; <\/p>\n

Black= Black*100;<\/p>\n

Unemp= Unemp*100;<\/p>\n

Hispanic = Hispanic*100 ; <\/p>\n

label Black= “Black Population Ratio” ; <\/p>\n

label Hispanic=”Hispanic Population Ratio” ; <\/p>\n

label unemp=”Unemployment Rate” ; <\/p>\n

label income=”Median Income in $1000″ ; <\/p>\n

proc means ; run ; <\/p>\n

1. Simple regression Model<\/strong><\/p>\n

Let\u00e2\u20ac\u2122s investigate the relationship between income (Y) and unemployment rate (X) using SAS. <\/p>\n

1) Find the correlation coefficient and covariance between X and Y.<\/p>\n

2) Scatter plot between X and Y with regression line<\/p>\n

3) Perform regression analysis using the following code:<\/p>\n

proc reg data= community ;<\/p>\n

Model income = unemp;<\/p>\n

run ;<\/p>\n

4) Using SAS code save the predicted value of income from above model and called \u00e2\u20ac\u0153yhat1\u00e2\u20ac\u009d and save the residuals called \u00e2\u20ac\u0153res1\u00e2\u20ac\u009d. Scatter plot themincome, yhat1, and res1 with unemp as the X variable.Explain what you found from the plots. <\/p>\n

5) Carefully find or calculate the following statistics using the regression output<\/strong> and explain their meanings. <\/p>\n