During ANLY 512 we will be studying the theory and practice of data visualization. We will be using R and the packages within R to assemble data and construct many different types of visualizations. We begin by studying some of the theoretical aspects of visualization. To do that we must appreciate the actual steps in the process of making a visualization.
Most of us use softare to do this and have done so for so long that we have lost an appreciation for the mechanistic steps involved in accurately graphing data. We will fix that this week by creating a series of analog (meaning you draw them by hand) graphics. The visualizations you create must be numerically and visually accurate and precisely scaled. Because of that the data sets we visualize will be small.
A couple of tips, remember that there is preprocessing involved in many graphics so you may have to do summaries or calculations to prepare, those should be included in your work.
To ensure accuracy pay close attention to axes and labels, you will be evaluated based on the accuracy of your graphics.
The final product of your homework (this file) should include scanned or photographed images for each question below and a short summary of the process.
To submit this homework you will create the document in Rstudio, using the knitr package (button included in Rstudio) and then submit the document to your Rpubs account. Once uploaded your will submit the link to that document on Moodle.
Find the mtcars data in R. This is the dataset that you will use to create your graphics. Use that data to draw by hand graphics for the next 4 questions.
mtcars data set that have different carb values.# Pivot the table to find there are six carb tpyes and then count the number of cars for each type
# Then calculate the proporation of each type
devtools::install_github('rstudio/rmarkdown')
## Downloading GitHub repo rstudio/rmarkdown@master
## from URL https://api.github.com/repos/rstudio/rmarkdown/zipball/master
## Installing rmarkdown
## '/Library/Frameworks/R.framework/Resources/bin/R' --no-site-file \
## --no-environ --no-save --no-restore --quiet CMD INSTALL \
## '/private/var/folders/5n/gt4j9bm96_j6shltnk583td80000gn/T/RtmpFbJylS/devtoolsff013003683/rstudio-rmarkdown-5c2313a' \
## --library='/Library/Frameworks/R.framework/Versions/3.2/Resources/library' \
## --install-tests
##
knitr::include_graphics("/Users/Yihan/Desktop/HW1Q1.png")
gear type in mtcars.# Pivot the table to find there are three gear tpyes and then count the number of cars for each type
knitr::include_graphics("/Users/Yihan/Desktop/HW1Q2.png")
gear type and how they are further divded out by cyl.# Pivot the table to find there are three gear tpyes, three types of cyl
# Then count the number of cars for each type of gears with subgroup based on cyl
knitr::include_graphics("/Users/Yihan/Desktop/HW1Q3.png")
wt and mpg.# Plot the dot of a pair of data from wt and mpg, wt on x axis and mpg on y axis
knitr::include_graphics("/Users/Yihan/Desktop/HW1Q4.png")
# Plot the trend in average mpg with increasing crab
knitr::include_graphics("/Users/Yihan/Desktop/HW1Q5.png")