Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which syntax below correctly outputs the contingency table as a dataset called 'outtab' in the 'analysis' library? Select one: O a. PROC FREQ DATA =

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Which syntax below correctly outputs the contingency table as a dataset called 'outtab' in the 'analysis' library? Select one: O a. PROC FREQ DATA = mydata; TABLES var1 *var2/OUT = outtab; RUN; O b. PROC FREQ DATA = mydata; TABLES var 1 *var2/OUT = outtab analysis; RUN; O c. PROC FREQ DATA = mydata OUT = outtab.analysis; TABLES var1 *var2; RUN; O d. PROC FREQ DATA = mydata OUT = analysis.outtab; TABLES var 1 *var2; RUN; O e. PROC FREQ DATA = mydata; TABLES var1 *var2/OUT = analysis.outtab; Which sample statistics measure the spread of a numeric variable's distribution? Select one or more: 0 a. JOR. O b. Mean O c. Standard Deviation d. Median O e. Variance Consider the roughly symmetric histogram below. What do we know about the relationship between the mean and median? 350 300 250 200 Frequency 150 100 50 0 6.30 7.35 8.40 9.45 10.50 11.55 12.60 Select one: a. The mean is approximately equal to the median. O b. There isn't enough information to know the relationship between the mean and median. O c. The mean is greater than the median. O d. The mean is less than the median. Which code below correctly creates a scatter plot with regression line for the MPG_Highway and MPG_City variables from the sashelp.cars dataset where the color and marker used for the points have been changed? (Recall the useful help page linked here. E) Select one: O a. PROC SGPLOT DATA = sashelp.cars MARKERATTRS=(color=lightgreen symbol=trianglefilled); REG X = MPG_Highway y = MPG_City; RUN; O b. PROC SGPLOT DATA = sashelp.cars; REG x = MPG_Highway y = MPG_City/MARKERATTRS (color=lightgreen symbol=trianglefilled); RUN; O c. PROC SGPLOT DATA = sashelp.cars; REG x = MPG_Highway y = MPG_City/MARKERATTRS=(color=lightgreen symbol=trianglefilled); RUN; O d. PROC SGPLOT DATA = sashelp.cars/MARKERATTRS=(color=lightgreen symbol=trianglefilled); REG X = MPG_Highway y = MPG_City; RUN; O e. PROC SGPLOT DATA = sashelp.cars; REG X = MPG_Highway y = MPG_City MARKERATTRS=(color=lightgreen symbol=trianglefilled); RUN; What is an interpretation of the IQR = 03-01? Select one: a. The range (spread) of the middle 50% of the data. O b. The IQR divided by 2 gives the median. c. The IQR is another way of looking at the median. O d. The location of the middle of the data. Which of the following are most likely categorical variables? Select one or more: a. Marital status b. Favorite type of pet O c. Years experience d. Age O e. Zipcode f. Number of bathrooms Which PROC step below correctly directs SAS to suppress printing of any output? Select one: a. PROC FREQ DATA = mydata; TABLES pet_type house_type/OUT = house Tab NOPRINT; RUN; O b. PROC FREQ DATA = mydata (NOPRINT); TABLES pet_type house_type/OUT = house Tab; RUN; O c. PROC FREQ DATA = mydata; TABLES pet_type house_type/SUPPRESS = all; RUN; O d. PROC FREQ DATA = mydata; TABLES pet_type house_type/NOPRINT; RUN; O e. PROC FREQ DATA = mydata NOPRINT; TABLES pet_type house_type/OUT = house Tab; RUN

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro Database Migration To Azure Data Modernization For The Enterprise

Authors: Kevin Kline, Denis McDowell, Dustin Dorsey, Matt Gordon

1st Edition

1484282299, 978-1484282298

More Books

Students also viewed these Databases questions

Question

What is the growth rate of GDP per capita?

Answered: 1 week ago