Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

QUESTION 1

1. Select the framing questions to include or exclude data: (Select all that apply)
All data the creates clutter and noise?

All category values, or just a select few?


All quantitative values or just those over a certain threshold?

All data or just those between a defined start and end date period?

QUESTION 2
1. Match the following design perspectives.
                                      Must be relevant
A.

                                      Must have sufficient


A. quantities
                                      Determine inclusion A Angle
B. and exclusion criteria .
B
Provides access to Framing
                                      .
B.
the most salient C
Focus
content .
                                      Draw viewers’
C. attention
                                      Organize the visible
C. content

QUESTION 3
1. R language command: How many women (female) who are Hispanic (sp) exist in the DataSet?
(Assume “mosaic” package is used)
tally(~female, data=[DataFrameName],margins=TRUE)

tally(~sp, data=[DataFrameName],margins=TRUE)

tally(~female+sp, data=[DataFrameName],margins=TRUE)
tally(~female+sp, data=[DataFrameName],margins=TRUE, format=”perc”)

QUESTION 4
1. R language command: How many women (female) who are Hispanic (sp) has 3 or more children
(ch) in the DataSet? (Assume “mosaic” package is used)
tally(~female+sp|ch>=3, data=[DataFrameName],margins=TRUE, format=”perc”)
tally(~female+sp|ch>=3, data=[DataFrameName],margins=TRUE)
tally(~female+sp|ch=3, data=[DataFrameName],margins=TRUE)

tally(~female+sp|ch>3, data=[DataFrameName],margins=TRUE)

QUESTION 5
1. Match the following relevant and sufficient questions:
                           What does your audience
A. want to know?
                           Why is the content
A. important?
                           What information should
A. I provide my audience? A
Relevant
                           Does a single chart represent .
B. all the information? B
Sufficient
.
                           How many angles are
B.
needed to represent the
data?

                           Is a blend of different
B.
angles needed for
analysis?

QUESTION 6
1. R language command: What percentage of women (female) who are Hispanic (sp) exist in the
DataSet? (Assume “mosaic” package is used)
tally(~sp, data=[DataFrameName], margins=TRUE)

tally(~female, data=[DataFrameName], margins=TRUE)

tally(~female+sp, data=[DataFrameName], margins=TRUE, format=”perc”)


tally(~female+sp, data=[DataFrameName], margins=TRUE, format=”prop”)

QUESTION 7
1. Select the focus questions that emphasizes what is more important: (Select all that apply)
What needs to be brought into view in the foreground?
What needs to be relegated to the background?

What data needs to be included or exclude?


What needs to be bigger and more prominent?

You might also like