Шукаєте відповіді та рішення тестів для ETC1010 - ETC5510 - Introduction to data analysis - S1 2025? Перегляньте нашу велику колекцію перевірених відповідей для ETC1010 - ETC5510 - Introduction to data analysis - S1 2025 в learning.monash.edu.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
The following question is about visualisation.
The data shows calories of a selection of chocolate bars, 100g equivalents. Calories mapped to the vertical axis. For the following statement:
Dark chocolates are higher in calories than milk chocolates.
The following question is about tidy data. The table below contains looks at crime data in different locations across New South Wales:
entry_point | lga | crime_type | count |
---|---|---|---|
FRONT DOOR | Paddington | arson | 100 |
FRONT DOOR | CBD | arson | 60 |
FRONT DOOR | Newtown | arson | 90 |
WINDOW | Paddington | burglary | 65 |
WINDOW | CBD | burglary | 55 |
WINDOW | Newtown | burglary | 100 |
ROOF | Paddington | burglary | 10 |
ROOF | CBD | burglary | NA |
ROOF | Newtown | burglary | NA |
What is the total number of arson crime incidents recorded in this data set for Newtown with entry point being ROOF?
This question is about working with temporal data. The example data is on pedestrian counts in the city of Melbourne. What time periods of Melbourne pedestrian traffic are NOT extracted by the code below?
Select all answers that apply. Incorrect answers will be penalised.
library(lubridate)
library(rwalkr)
ped_2020 <- melb_walk(from=Sys.Date() - 7L)
ped_2019 <- melb_walk(from=Sys.Date() - 30L - years(1), to=Sys.Date() - years(1))
The following question is about workflow and reproducibility. Suppose you are writing a report with Rmarkdown that will be presented to an important client. You have a time consuming calculation that is required for downstream chunks for making tables and charts but that isn’t necessary to show the client.
Which of the following chunks will compute the output but not print the resulting code in the report? Note there may be more than one correct answer. Incorrect answers are penalised.
{r chunk-A, eval = FALSE, echo = FALSE}
{r chunk-B, eval = FALSE, echo = TRUE}
{r chunk-C, eval = TRUE, echo = FALSE}
{r chunk-D, include = FALSE}
This question is about visualising temporal data.
The example data is on pedestrian counts in the city of Melbourne. The below plot looks at the pedestrian counts over weekdays in March, comparing 2019 to 2020.
ped %>%
ggplot(aes(x=Time, y=Count, group=Date, colour=as.factor(year))) +
geom_line() +
facet_wrap(~wday, ncol=7) +
scale_colour_brewer("", palette="Dark2") +
theme(legend.position="bottom", legend.title = element_blank())
Image failed to load
By looking at the above plots, select all statements that are TRUE. Incorrect answers are penalised.
The following question is about tidy data. The table below contains looks at crime occurrence in different locations across Victoria:
entry_point lga crime_type count FRONT DOOR Paddington arson 100 FRONT DOOR CBD arson 60 FRONT DOOR Newtown arson 90 WINDOW Paddington burglary 65 WINDOW CBD burglary 55 WINDOW Newtown burglary 100 ROOF Paddington burglary 10 ROOF CBD burglary NA ROOF Newtown burglary NA
Which of the following statements about the variable count
are TRUE?
Incorrect answers will be penalised.
This question is about workflow and reproducibility. Your project as saved in ETC1010_5510.Rproj
is in the folder ETC1010_5510
(which indicates that the location where R is looking at is folder ETC1010_5510
). In that folder you have carefully organised your assignment work into a separate directory, which holds your solution, in the file assignment_01.Rmd
. The directory structure is below:
users
└── myself
└── ETC1010_5510
└── ETC1010_5510.Rproj
└── assignment
└── assignment_01.Rmd
└── assignment_02.Rmd
└── data
└── file.csv
What would happen if you tried to run the following code after you opened the project read_csv("assignment/data/file.csv")
?
How does semi_join work?
What is the difference between the left_join() and the right_join()?
Select the correct answer
True or False?
“Keys” are variables used to connected records from one table to another.
Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!