These course units are intended as a supplement to your actual work with data
It wants to teach you some tricks that are often not taught
Don’t expect a full-fledged course that answers it all for you
That also doesn’t fit the subject matter
Data science is more like dentistry than particle physics
But, the aim is to bring everybody to the same level to be able to actually do visualizations (while at the same time also providing content that very likely also the more advanced student also haven’t heard yet)
It should convey some of the (softer) skills that you actually need often
“It is often said that 80% of data analysis is spent on the process of cleaning and preparing the data (Dasu and Johnson 2003).”
Wickham, 2014
Wickham, H. (2014). Tidy Data. Journal of Statistical Software, 59(10). https://doi.org/10.18637/jss.v059.i10
“each variable is a column”
“each observation is a row”
“each type of observational unit is a table” (also called data frame or data table)
“data tidying: structuring datasets to facilitate analysis”
It provides a “philosophy of data”
Generally, data sets can be constructed in all bizarre ways imaginable
https://cran.r-project.org/web/packages/data.table/vignettes/datatable-intro.html
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 1 5.1 3.5 1.4 0.2 setosa
## 2 4.9 3.0 1.4 0.2 setosa
## 3 4.7 3.2 1.3 0.2 setosa
## 4 4.6 3.1 1.5 0.2 setosa
## 5 5.0 3.6 1.4 0.2 setosa
## 6 5.4 3.9 1.7 0.4 setosa