Use the given data to classify handwritten digits. There is only one task associated with this analysis, an IMRAD. Given that this is a benchmark dataset, the analysis can be more about comparing the performance of methods than using the methods in practice.
load_mnist.RFor this analysis, do the following:
Submit a .zip file to Compass that contains:
.Rmd file that is your IMRAD.
data/ which contains heart-disease.csv..html file that is the result of knitting your .Rmd file.The zip file should contain no other files. (Whether or not these two files are within another folder does not matter.)
Submit your .zip file to the correct assignment on Compass2g. You are granted an unlimited number of submissions. Only your final submission will be graded.
We assume that your R, R packages, and RStudio are all up-to-date. (Or at least as recent as the versions found on RStudio Cloud.) You’ve been warned.
Your code will be graded based on its style. We don’t expect you to have a mature coding style, so we have a list of rules which must be followed.
The following will be explicitly checked for in your code:
==, +, -, <-, etc.) should always be surrounded by spaces.
:, ::, $, [, [[, ], ]]^: Use x ^ 2 instead of x^2.<- or =, not both.
<- operator, you will need to replace the = operator in the given code.T or F.;.attach() function.The following are suggested, but will not be directly assessed:
., or capital letters in variable and function names.for (i in 1:10)for(i in 1:10)mean(x)mean (x)predict() function.)
Much of this is derived from the tidyverse style guide. If you follow the tidyverse guide, be aware of our use of ^ and =.
This analysis is worth a total of 10 points.
.Rmd and .html (4 points)
.Rmd (0 - 1 - 2 - 3).html (0 - 1 - 2 - 3 - 4)
Failure to submit the correct files will results in 0 points for the IMRAD.
If you submit multiple attempts, the final attempt will be graded. If your first submission is on time, but your final submission is late, you will incur the late submission penalty.