Skip to content

Commit f180a24

Browse files
authored
Update data-visualisation.md
Fix broken links to plotly interactive HTML charts.
1 parent c16a924 commit f180a24

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

episodes/data-visualisation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ fig = px.line(selected_branches, x=selected_branches.index, y='circulation', col
249249
fig.show()
250250
```
251251

252-
Here is a view of the <a href='learners/line_plot_int.html', target='_blank'>interactive output of the Plotly line chart</a>.
252+
Here is a view of the [interactive output of the Plotly line chart](learners/line_plot_int.html).
253253

254254

255255
One advantage that Plotly provides over Matplotlib is that it has some interactive features out of the box. Hover your cursor over the lines in the output to find out more granular data about specific branches over time.
@@ -270,7 +270,7 @@ fig = px.bar(total_circulation_by_branch, x='branch', y='circulation', title='To
270270
fig.show()
271271
```
272272

273-
Here is a view of the <a href='learners/bar_plot_int.html', target='_blank'>interactive output of the Plotly bar chart</a>.
273+
Here is a view of the [interactive output of the Plotly bar chart](learners/bar_plot_int.html).
274274

275275

276276

0 commit comments

Comments
 (0)