[ad_1]
Q1. Fill in the blank: Programming involves _____ a computer to perform an action or set of actions.
Q2. What are Python, JavaScript, SAS, Scala, and Julia?
Q3. What are the benefits of using a programming language to work with your data? Select all that apply.
Q1. Open-source code is only available to people who pay a subscription fee.
Q2. The R programming language can be used for which of the following tasks? Select all that apply.
Q3. Which of the following terms best describes the R programming language?
Q1. What type of software application is RStudio?
Q2. RStudio includes which of the following panes? Select all that apply.
Q3. If you write code directly in the R console, RStudio will automatically save your code when you close your current session.
Q1. A data analyst uses words and symbols to give instructions to a computer. What are the words and symbols known as?
Q2. Many data analysts prefer to use a programming language for which of the following reasons? Select all that apply.
Q3. Which of the following are the benefits of open-source code? Select all that apply.
Q4. Fill in the blank: The benefits of using _____ for data analysis include the ability to quickly process lots of data and create high-quality visualizations.
Q5. A data analyst needs to quickly create a series of scatterplots to visualize a very large dataset. What should they use for the analysis?
Q6. RStudio’s integrated development environment lets you perform which of the following actions? Select all that apply.
Q7. In which two parts of RStudio can you execute code? Select all that apply.
Q8. Fill in the blank: In RStudio, the _____ is where you can find all the data you currently have loaded, and can easily organize and save it.
Q1. Why do analysts use comments In R programming? Select all that apply.
Q2. What should you use to assign a value to a variable in R?
Q3. Which of the following examples is the proper syntax for calling a function in R? 1 point
Q4. Which of the following examples can you use in R for date/time data? Select all that apply. 1 point
2018-12-21 16:35:28 UTC
2019-04-16
06:11:13 UTC
07/24-2018
Q1. An analyst includes the following calculation in their R programming: midyear_sales <- (quarter_1_sales + quarter_2_sales) - overhead_costs
Which variable will the total from this calculation be assigned to?
midyear_sales
quarter_1_sales
quarter_2_sales
overhead_costs
Q2. An analyst is checking the value of the variable x using a logical operator, so they run the following code:
x > 35 & x < 65
Which values of x would return TRUE
when the analyst runs the code? Select all that apply.
Q3. Which of the following functions can analysts use to create conditional statements in their R programming? Select all that apply.
Q1. When using RStudio, what does the installed.packages() function do?
Q2. In data analytics, what is CRAN?
Q3. What are ggplot2, tidyr, dplyr, and forcats all a part of?
Q1. When working in R, for which part of the data analysis process do analysts use the tidyr package?
Q2. Which tidyverse package contains a set of functions, such as select(), that help with data manipulation?
Q3. An analyst is organizing a dataset in RStudio using the following code:
arrange(filter(Storage_1, inventory >= 40), count)
Which of the following examples is a nested function in the code?
Q1. Which of the following is an example of a piece of R code that contains both a function and an argument?
print("peaches")
weekly_sales <- 7450
#filter
mass > 1000
Q2. A data analyst is assigning a variable to a value in their company’s sales dataset for 2020. Which variable name uses the correct syntax?
_2020sales
sales_2020
-sales-2020
2020_sales
Q3. You want to create a vector with the values 12, 23, 51, in that exact order. After specifying the variable, what R code chunk allows you to create the vector?
v(12, 23, 51)
c(12, 23, 51)
c(51, 23, 12)
v(51, 23, 12)
Q4. An analyst comes across dates listed as strings in a dataset, for example, December 10th, 2020. To convert the strings to a date/time data type, which function should the analyst use?
Q5. A data analyst inputs the following code in RStudio:
sales_1 <- (3500.00 * 12)
Which of the following types of operators does the analyst use in the code? Select all that apply.
Q6. A data analyst is deciding on naming conventions for analysis that they are beginning in R. Which of the following rules are widely accepted stylistic conventions that the analyst should use when naming variables? Select all that apply.
Q7. Which of the following are included in R packages? Select all that apply.
Q8. Packages installed in RStudio are called from CRAN. CRAN is an online archive with R packages and other R-related resources.
Q9. When programming in R, what is a pipe used as an alternative?
Q1. Which of the following are best practices for creating data frames? Select all that apply.
Q2. Why are tibbles a useful variation of data frames?
Q3. Tidy data is a way of standardizing the organization of data within R.
Q4. Which R function can be used to make changes to a data frame?
Q1. A data analyst is cleaning their data in R. They want to be sure that their column names are unique and consistent to avoid any errors in their analysis. What R function can they use to do this automatically?
Q2. A data analyst is trying to sort the penguins bill_length_mm data in descending order. They input the following code:
penguins %>%
What code does the analyst add to organize the column bill_length_mm in descending order?
arrange(-bill_length_mm)
arrange(=bill_length_mm)
arrange(+bill_length_mm)
arrange(%>%bill_length_mm)
Q3. A data analyst is working with customer information from their company’s sales data. The first and last names are in separate columns, but they want to create one column with both names instead. Which of the following functions can they use?
Q1. Which of the following functions can a data analyst use to get a statistical summary of their dataset? Select all that apply.
Q2. A data analyst inputs the following command:
quartet %>% group_by(set) %>% summarize(mean(x), sd(x), mean(y), sd(y), cor(x, y)).
Which of the functions in this command can help them determine how strongly related their variables are?
Q3. Fill in the blank: The bias function compares the actual outcome of the data with the _____ outcome to determine whether or not the model is biased.
Q1. A data analyst is creating a new data frame. Their dataset has dates, currency, and text strings. What characteristic of data frames is this an instance of?
Q2. A data analyst is considering using tibbles instead of basic data frames. What are some of the limitations of tibbles? Select all that apply.
Q3. A data analyst is working with a large data frame. It contains so many columns that they don’t all fit on the screen at once. The analyst wants a quick list of all of the column names to get a better idea of what is in their data. What function should they use?
Q4. A data analyst is working with the ToothGrowth dataset in R. What code chunk will allow them to get a quick summary of the dataset?
glimpse(ToothGrowth)
min(ToothGrowth)
separate(ToothGrowth)
colnames(ToothGrowth)
Q5. A data analyst is working with the penguins dataset. What code chunk does the analyst write to make sure all the column names are unique and consistent and contain only letters, numbers, and underscores?
drop_na(penguins)
clean_names(penguins)
rename(penguins)
select(penguins)
Q6. A data analyst is working with the penguins data. They write the following code:
penguins %>%
The variable species includes three penguin species: Adelie, Chinstrap, and Gentoo. What code chunk does the analyst add to create a data frame that only includes the Gentoo species?
filter(Gentoo == species)
filter(species <- "Gentoo")
filter(species == "Gentoo")
filter(species == "Adelie")
Q7. A data analyst is working with the penguin’s dataset. They write the following code:
penguins %>%
group_by(species) %>%
What code chunk does the analyst add to find the mean value for the variable body_mass_g?
summarize(=body_mass_g)
summarize(max(body_mass_g))
summarize(mean(body_mass_g))
summarize(body_mass_g(mean))
Q8. A data analyst is working with a data frame named salary_data. They want to create a new column named wages that includes data from the rate column multiplied by 40. What code chunk lets the analyst create the wages column?
mutate(salary_data, rate = wages * 40)
mutate(wages = rate * 40)
mutate(salary_data, wages = rate * 40)
mutate(salary_data, wages = rate + 40)
Q9. A data analyst is working with a data frame named customers. It has separate columns for area code (area_code) and phone number (phone_num). The analyst wants to combine the two columns into a single column called phone_number, with the area code and phone number separated by a hyphen. What code chunk lets the analyst create the phone_number column?
unite(customers, area_code, phone_num, sep="-")
unite(customers, "phone_number", area_code, phone_num)
unite(customers, "phone_number", area_code, sep="-")
unite(customers, "phone_number", area_code, phone_num, sep="-")
Q10. A data analyst wants to summarize their data with the sd(), cor(), and mean(). What kind of measures are these?
Q11. In R, which statistical measure demonstrates how strong the relationship is between two variables?
Q12. A data analyst is studying weather data. They write the following code chunk:
bias(actual_temp, predicted_temp)
What will this code chunk calculate?
The minimum difference between the actual and predicted values
The maximum difference between the actual and predicted values
The average difference between the actual and predicted values
The total average of the values
Q1. In ggplot2, you can use the _____ function to specify the data frame to use for your plot.
Q2. In ggplot2, you use the plus sign (+) to add a layer to your plot.
Q3. In ggplot2, what function do you use to map variables in your data to visual features of your plot?
Q4. What type of plot will the following code create?
ggplot(data = penguins) +
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g))
Q1. Which of the following aesthetic attributes can you map to the data in a scatterplot? Select all that apply.
Q2. Which of the following functions lets you display smaller groups, or subsets, of your data?
Q3. You can use the color aesthetic to add color to the outline of each bar in a bar chart.
Q4. What is the role of the x argument in the following code?
ggplot(data = diamonds) +
geom_bar(mapping = aes(x = cut))
Q5. A data analyst creates a scatterplot with a lot of data points. It is difficult for the analyst to distinguish the individual points on the plot because they overlap. What function could the analyst use to make the points easier to find?
Q1. Which of the following are the benefits of adding labels and annotations to your plot? Select all that apply.
Q2. A data analyst is creating a plot for a presentation to stakeholders. The analyst wants to add a title, subtitle, and caption to the plot to help communicate important information. What function could the analyst use?
Q3. What function can you use to put a text label inside the grid of your plot to call out specific data points?
Q4. A data analyst wants to add the title “Penguins” to a plot that visualizes the penguins dataset. What is the correct syntax for the argument of the labs() function?
labs(title <- “Penguins”))
labs(title = “Penguins”)
labs("Penguins")
labs("Penguins" = title)
Q5. Which of the following functions can you use to save your plots in ggplot2?
Q1. Which of the following are the benefits of using ggplot2? Select all that apply.
Q2. In ggplot2, what symbol do you use to add layers to your plot?
Q3. A data analyst creates a plot using the following code chunk:
ggplot(data = penguins) +
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g))
Which of the following represents a variable in the code chunk? Select all that apply.
body_mass_g
x
flipper_length_mm
y
Q4. A data analyst uses the aes() function to define the connection between their data and the plots in their visualization. What argument is used to refer to matching up a specific variable in your data set with a specific aesthetic?
Q5. A data analyst is working with the penguin’s data. The analyst creates a scatterplot with the following code:
ggplot(data = penguins) +
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g,alpha = species))
What does the alpha aesthetic do to the appearance of the points on the plot?
Q6. You are working with the penguin’s dataset. You create a scatterplot with the following code chunk:
ggplot(data = penguins) +
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g))
How do you change the second line of code to map the aesthetic size to the variable species?
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, species = size)
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, size = species))
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, species + size)
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, size + species))
Q7. Fill in the blank: The _____ creates a scatterplot and then adds a small amount of random noise to each point in the plot to make the points easier to find.
Q8. You have created a plot based on data in the diamonds dataset. What code chunk can be added to your existing plot to create wrap-around facets based on the variable color?
facet_wrap(~color)
facet_wrap(color)
facet_wrap(color~)
facet(~color)
Q9. A data analyst uses the annotate() function to create a text label for a plot. Which attributes of the text can the analyst change by adding code to the argument of the annotate() function? Select all that apply.
Q10. You are working with the penguin’s dataset. You create a scatterplot with the following lines of code:
ggplot(data = penguins) +
geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g)) +
What code chunk do you add to the third line to save your plot as a JPEG file with “penguins” as the file name?
ggsave(penguins)
ggsave("penguins.jpeg")
ggsave(penguins.jpeg)
ggsave("jpeg.penguins")
Q1. R Markdown allows you to create a record of the steps you took to complete your analysis directly in RStudio.
Q2. Fill in the blank: Markdown is a _____ for formatting plain text files.
Q3. A data analyst creates an interactive version of their R Markdown document to share with other users that allows them to execute code the analyst wrote. What did they create?
Q4. A data analyst wants to convert their R Markdown file into another format. What are their options? Select all that apply.
Q5. A data analyst has finished editing their R Markdown file and wants to save it as an HTML report. What tool will they use?
Q1. What information does a data analyst usually find in the header section of an RMarkdown document? Select all that apply.
Q2. While formatting their R Markdown document, a data analyst decides to make one of the headers smaller. What do they type into the document to do this?
Q3. Inline code can be inserted directly into a .rmd file.
Q4. To create bullet points to their output document, a data analyst adds _____ to their RMarkdown document.
Q5. A data analyst wants to embed a link in their RMarkdown document. They write (click here!)(www.rstudio.com) but it doesn’t work. What should they write instead?
[click here!](www.rstudio.com)
<click here!>(www.rstudio.com)
"click here!"(www.rstudio.com)
click here!(www.rstudio.com)
Q1. A data analyst includes a section of code in their RMarkdown file so they can add comments and allow stakeholders to run it. What is the term for this section of code?
Q2. Fill in the blank: A delimiter is a character that marks the beginning and end of _____.
Q3. Data analysts put three backticks at the end of their code chunks to act as a delimiter.
Q4. A data analyst has to create a monthly report for their stakeholders. What can they create to help them save time generating these reports?
Q5. A data analyst wants to mark the beginning of their code chunk. What delimiter should they type in their .rmd file?
+++{r }
```{r }
==={r }
***{r }
Q1. A data analyst wants to create a shareable report of their analysis with documentation of their process and notes explaining their code to stakeholders. What tool can they use to generate this?
Q2. Fill in the blank: R Markdown notebooks can be converted into HTML, PDF, and Word documents, slide presentations, and _____.
Q3. A data analyst notices that their header is much smaller than they wanted it to be. What happened?
Q4. A data analyst wants to include a line of code directly in their .rmd file in order to explain their process more clearly. What is this code called?
Q5. What symbol can be used to add bullet points in R Markdown?
Q6. A data analyst adds a section of executable code to their .rmd file so users can execute it and generate the correct output. What is this section of code called?
Q7. A data analyst is inserting a line of code directly into their .rmd file. What will they use to mark the beginning and end of the code?
Q8. If an analyst creates the same kind of document over and over or customizes the appearance of a final report, they can use _____ to save them time.
Successfully completing the Data Analysis with R Programming Coursera quiz is a significant step toward mastering data analysis using R. These answers provide valuable insights and solutions to help you excel in your course and deepen your understanding of data analysis techniques.
This Quiz is a part of the Google Data Analytics Professional Certificate >>
Ask Questions to Make Data-Driven Decisions Quiz Answers
Foundations: Data, Data, Everywhere Quiz Answers
Prepare Data for Exploration Coursera Quiz Answers
Analyze Data to Answer Questions Coursera Quiz Answers
[ad_2]
2024 ZIMSEC O Level Results Now Out The Zimbabwe School Examinations Council (ZIMSEC) has officially…
Former Vice President Phelekezela Mphoko has died aged 84, presidency spokesman George Charamba has confirmed.…
The Zimbabwe School Examinations Council (ZIMSEC) opened its online portal for Grade 7 results…
2024 ZIMSEC Grade 7 Results Now Out The Zimbabwe School Examinations Council (ZIMSEC) has officially…
We’re bringing free WiFi to different parts of Zimbabwe to help you access eduzim.co.zw for…
Sadza is a simple, hearty dish that forms the backbone of many Zimbabwean meals. It's…