feat: add a more practical example course

This commit is contained in:
George Cushen
2021-01-24 19:56:32 +00:00
parent 52d95d7574
commit f39774e981
10 changed files with 131 additions and 135 deletions

View File

@@ -0,0 +1,32 @@
---
title: Visualization
date: '2021-01-01'
type: book
weight: 30
highlight: true
---
Learn how to visualize data with Plotly.
<!--more-->
{{< icon name="clock" pack="fas" >}} 1-2 hours per week, for 8 weeks
## Learn
{{< youtube hSPmj7mK6ng >}}
## Quiz
{{< spoiler text="When is a heatmap useful?" >}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
{{< /spoiler >}}
{{< spoiler text="Write Plotly code to render a bar chart" >}}
```python
import plotly.express as px
data_canada = px.data.gapminder().query("country == 'Canada'")
fig = px.bar(data_canada, x='year', y='pop')
fig.show()
```
{{< /spoiler >}}