Match the code to the visualization
Which value is not returned when using summary() on a numeri…
Which value is not returned when using summary() on a numeric variable in a data frame?
Which of the following labs parameters creates the text “sou…
Which of the following labs parameters creates the text “source: mpg data from tidyverse” (see circled in red)?
We want to see the distribution of favorite ice cream flavor…
We want to see the distribution of favorite ice cream flavors amount surveyors.
Create a function that returns the volume of a rectangular p…
Create a function that returns the volume of a rectangular prism given the width, length, and height without using any built-in functions or package functions.
Match the scenario to the visualization that would best answ…
Match the scenario to the visualization that would best answer the question/ situation. FYI – the axes values removed on purpose, so don’t rely on that to determine the right type of visualization.
We want to see if there is a correlation between penguin bil…
We want to see if there is a correlation between penguin bill length and penguin height.
The following code will throw an error: ice cream
The following code will throw an error: ice cream
When using the summary function on a data frame, what value(…
When using the summary function on a data frame, what value(s) is/are returned for a numeric variable?
Create a function that returns the first n rows and first m…
Create a function that returns the first n rows and first m columns of a data frame. Set the default to n=5 and m =5. You can assume the input will have at least 5 rows and 5 columns. DO NOT any built-in function like tail() or slice().