Skip to content

Commit 6b84332

Browse files
Linked assignment and quizzes
1 parent 34a63ca commit 6b84332

File tree

1 file changed

+3
-3
lines changed
  • 3-Data-Visualization/R/09-visualization-quantities

1 file changed

+3
-3
lines changed

3-Data-Visualization/R/09-visualization-quantities/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| Visualizing Quantities - _Sketchnote by [@nitya](https://twitter.com/nitya)_ |
55

66
In this lesson you will explore how to use some of the many available R packages libraries to learn how to create interesting visualizations all around the concept of quantity. Using a cleaned dataset about the birds of Minnesota, you can learn many interesting facts about local wildlife.
7-
## [Pre-lecture quiz]() TO BE LINKED
7+
## [Pre-lecture quiz](https://red-water-0103e7a0f.azurestaticapps.net/quiz/16)
88

99
## Observe wingspan with ggplot2
1010
An excellent library to create both simple and sophisticated plots and charts of various kinds is [ggplot2](https://cran.r-project.org/web/packages/ggplot2/index.html). In general terms, the process of plotting data using these libraries includes identifying the parts of your dataframe that you want to target, performing any transforms on that data necessary, assigning its x and y axis values, deciding what kind of plot to show, and then showing the plot.
@@ -206,11 +206,11 @@ ggplot(data=birds_grouped, aes(x=Category)) +
206206
## 🚀 Challenge
207207

208208
This bird dataset offers a wealth of information about different types of birds within a particular ecosystem. Search around the internet and see if you can find other bird-oriented datasets. Practice building charts and graphs around these birds to discover facts you didn't realize.
209-
## [Post-lecture quiz]() To be linked
209+
## [Post-lecture quiz](https://red-water-0103e7a0f.azurestaticapps.net/quiz/17)
210210

211211
## Review & Self Study
212212

213213
This first lesson has given you some information about how to use `ggplot2`to visualize quantities. Do some research around other ways to work with datasets for visualization. Research and lookout for datasets that you could visualize using other packages like [Lattice](https://stat.ethz.ch/R-manual/R-devel/library/lattice/html/Lattice.html) and [Plotly](https://github.com/plotly/plotly.R#readme)
214214

215215
## Assignment
216-
[Lines, Scatters, and Bars]() Yet to be linked
216+
[Lines, Scatters, and Bars](assignment.md)

0 commit comments

Comments
 (0)