Question

Which PROC FREQ step produced this table? Percent Table of Gender by Ques1 Gender Ques1 1...

Which PROC FREQ step produced this table? Percent Table of Gender by Ques1 Gender Ques1 1 2 3 4 5 Total F 0.00 0.00 0.00 14.29 28.57 42.86 M 14.29 28.57 14.29 0.00 0.00 57.14 Total 1 14.29 2 28.57 1 14.29 1 14.29 2 28.57 7 100.00 Question 10 options: D. proc freq data=learn.survey; tables Gender*Ques1 / norow nocol; run; A. proc freq data=learn.survey; tables Gender*Ques1 / list; run; C. proc freq data=learn.survey; tables Gender*Ques1 / nocol; run; B. proc freq data=learn.survey; tables Gender*Ques1 / nofreq norow nocol; run;

Homework Answers

Answer #1

The given table is as follows:

Percent Table of Gender by Ques1 Gender
F M Total
1 0 14.29 14.29
2 0 28.57 28.57
3 0 14.29 14.29
4 14.29 0 14.29
5 28.57 0 28.57
Total 42.86 57.15 100

In the above table, we have cell percentages only and no frequencies, no row and column percentages. Hence, nofreq norow nocol should have been used in PROC FREQ.

Correct Option B.) proc freq data=learn.survey; tables Gender*Ques1 / nofreq norow nocol; run;

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Step 1 of 2: The total of all the frequencies in a frequency table is 487...
Step 1 of 2: The total of all the frequencies in a frequency table is 487 If a section in a pie chart corresponds to an item with a frequency of 228, what is the size of the angle of the corresponding circular wedge? Round your answer to the nearest degree. Use your knowledge of pie charts to answer the following questions. Step 2 of 2: Could a pie chart be constructed from the following set of data? Item Percent...
Using α = 0.01, test that there was no relationship between survival and age category. Refer...
Using α = 0.01, test that there was no relationship between survival and age category. Refer to the output in part (a). State the null and alternative hypotheses. Report the value of the appropriate test statistic, the distribution of the test statistic under the null hypothesis, and the P-value of the test to answer the question. State your conclusion. Output from part A Contingency table results: Rows: Survival Columns: Bin(Age) Cell format Count (Row percent) (Column percent) (Percent of total)...
Exercise 14.2 Presented below are some hypothetical data representing 50 people: (1) gender (M=male, F=female) and...
Exercise 14.2 Presented below are some hypothetical data representing 50 people: (1) gender (M=male, F=female) and (2) whether they attended church last week (Y=yes, N=no). In the steps below you will be asked to construct the appropriate bivariate percentage table showing the relationship between gender and church attendance and to give your interpretation of that table. M-N F-N   F-Y      M-N   M-Y F-N   F-Y   F-Y   M-N   M-Y M-Y F-Y   M-N M-Y F-Y   F-N   M-N   M-N F-N   F-Y M-N F-Y   M-N...
Complete the following ANOVA table to answer the question Source df MS f F CRIT City_Size...
Complete the following ANOVA table to answer the question Source df MS f F CRIT City_Size (A) 2 380 Gender (B) 1 20 AxB 70 Error 100 Total 59 The partial eta-squared due to interaction is A..583 B. Insufficient data. It cannot be estimated from the data C. .206 D. .185
Record the data. In class, randomly pick one person. On the class list, mark that person’s...
Record the data. In class, randomly pick one person. On the class list, mark that person’s name. Move down four names on the class list. Mark that person’s name. Continue doing this until you have marked 12 names. You may need to go back to the start of the list. For each marked name record the five data values. You now have a total of 60 data values. For each name marked, record the data. 5 3 0 0 0...
Consider the following SAS code and data: DATA SCHOOL; LENGTH GENDER $ 1 TEACHER $ 5;...
Consider the following SAS code and data: DATA SCHOOL; LENGTH GENDER $ 1 TEACHER $ 5; INPUT SUBJECT GENDER $ TEACHER $ T_AGE PRETEST POSTTEST; GAIN = POSTTEST - PRETEST; DATALINES; 1 M JONES 35 67 81 2 F JONES 35 98 86 3 M JONES 35 52 92 4 M BLACK 42 41 74 5 F BLACK 42 46 76 6 M SMITH 68 38 80 7 M SMITH 68 49 71 8 F SMITH 68 38 63 9...
Public Libraries and Gender A survey1 asked a random sample of n=2752 US adults whether they...
Public Libraries and Gender A survey1 asked a random sample of n=2752 US adults whether they had visited a public library in the last 12 months. The results for males and females are shown in the table below. Yes No Total Females 726 697 1423 Males 505 824 1329 Total 1231 1521 2752 Table 1: Have you visited a public library in the last year? 1Rainie, L., “Libraries and Learning,” www.pewinternet.org/2016/04/07/libraries-and-learning/, Pew Research Center, April 7, 2016. (a) Find p^f...
1. MODERATION EFFECT Table 10.20: Result of Hierarchical Regression Analysis (Customer Loyalty) Independent variables Dependent variable:...
1. MODERATION EFFECT Table 10.20: Result of Hierarchical Regression Analysis (Customer Loyalty) Independent variables Dependent variable: Customer Loyalty Step 1 Step 2 Step 3 Primary independent variables Trust 0.250* 0.223* 0.287* Commitment 0.122 0.131 0.089 Communication 0.293** 0.301** 0.164* Conflict Handling 0.293** 0.301** 0.164* Moderating variable Gender -0.105* -0.096 Interaction effects Trust    x Gender 0.509** Commitment    x   Gender -0.050 Communication   x   Gender -0.416* Conflict Handling   x Gender -0.416* R2 0.239 0.307 0.432 Change in R2 0.239* 0.068I* 0.125* Change in...
-- Table construction (just 1 simplest possible way) CREATE TABLE PetType ( petTypeId VARCHAR(10) PRIMARY KEY,...
-- Table construction (just 1 simplest possible way) CREATE TABLE PetType ( petTypeId VARCHAR(10) PRIMARY KEY, animalType VARCHAR(20), breed VARCHAR(20) ); CREATE TABLE Owner ( ownerId VARCHAR(10) PRIMARY KEY, firstName VARCHAR(20), lastName VARCHAR(20) NOT NULL, homePhoneNumber VARCHAR(20), streetAddress VARCHAR(80), suburb VARCHAR(20), postcode VARCHAR(10) ); CREATE TABLE Pet ( petId VARCHAR(10) PRIMARY KEY, petName VARCHAR(20), sex CHAR(1) CHECK (sex IN ('M', 'F')), petTypeId VARCHAR(10) FOREIGN KEY REFERENCES PetType ); CREATE TABLE PetAndOwner ( ownerId VARCHAR(10), petId VARCHAR(10), PRIMARY KEY (ownerId, petId),...
1. Which step is first in viewing all the conditional rules you have applied to a...
1. Which step is first in viewing all the conditional rules you have applied to a Pivot Table? Select an answer: Open a new worksheet, then click any cell. Click any Totals or Subtotals cell within the Pivot Table. Click any cell on the worksheet outside of the Pivot Table. Click any cell on the within the Pivot Table. 2. Why would you use Data Bars with a Pivot Table? Select an answer: to horizontally display the relative magnitude of...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT