Please download the answer file and edit it on Rstudio. Write your student number in the correct place at the beginning of the answer file. When you finish, send the answers.R
file to the answers’ mailbox. All questions are independent and can be answered in any order.
midterm.txt
, store it in your computer, and read it into a data frame called midterm
. Show summary(midterm)
.## Grade Num_Homework
## Min. : 0.0 Min. :0.00
## 1st Qu.:21.0 1st Qu.:0.00
## Median :58.0 Median :0.00
## Mean :53.6 Mean :0.76
## 3rd Qu.:87.0 3rd Qu.:1.00
## Max. :99.0 Max. :3.00
# write here
midterm$Grade
. # write here
# write here
# write here
midterm$Num_Homework
. The result should be like the following image. # write here
# write here
# write here
# write here
# write here
LETTERS
can be useful. # write here
midterm$Num_Homework*33
. # write here