Question
1) R language command: How many men (male) who are Caucasian (cn) has more than 1 child (ch) in the DataSet? (Assume mosaic package is
1) R language command: How many men (male) who are Caucasian (cn) has more than 1 child (ch) in the DataSet? (Assume mosaic package is used)
tally(~male+cn|ch>1, data=[DataFrameName],margins=TRUE) | ||
tally(~male+cn|ch>=1, data=[DataFrameName],margins=TRUE) | ||
tally(~male+cn|ch=1, data=[DataFrameName],margins=TRUE) | ||
tally(~male+cn|ch>1, data=[DataFrameName],margins=TRUE, format=perc) |
2)
R language command: What proportion of men (male) who are Caucasian (cn) exist in the DataSet? (Assume mosaic package is used)
tally(~cn, data=[DataFrameName],margins=TRUE) | ||
tally(~male+cn, data=[DataFrameName],margins=TRUE, format=perc) | ||
tally(~male+cn, data=[DataFrameName],margins=TRUE, format=prop) | ||
tally(~male, data=[DataFrameName],margins=TRUE) |
3)
Match the encoding data properties and features.
|
|
4)
R language command: What percentage of men (male) who are Caucasian (cn) are married (m) and has 2 children (ch) in the DataSet? (Assume mosaic package is used)
tally(~male+cn+m|ch=2, data=[DataFrameName], margins=TRUE, format=perc) | ||
tally(~male+cn+m|ch>=2, data=[DataFrameName], margins=TRUE, format=perc) | ||
tally(~male+cn+m|ch=2, data=[DataFrameName], margins=TRUE) | ||
tally(~male+cn+m|ch=2, data=[DataFrameName], margins=TRUE, format=prop) |
5)
Match the graphs and the data types.
|
|
6)
Match the chart types.
|
|
7) Visualizers are doing the reverse through visual ____________, assigning visual properties to data values.
8) Viewers perceiving a visual display of data are ____________ the various shapes, sizes, positions and colors to form an understanding of the values represented.
9)
Based on Kirks (2016) scoring system of assessment of charts, what score would you assign the following: Charts you can make but involve a greater amount of time and effort?
0 | ||
3 | ||
2 | ||
1 |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started