@@ -29,12 +29,12 @@ From [Claus O. Wilke: "Fundamentals of Data Visualization"](https://clauswilke.c
2929 after the person who created them left the group.
3030- There is not the one perfect language and ** not the one perfect library** for everything.
3131- Within Python, many libraries exist:
32- - [ Vega-Altair] ( https://altair-viz.github.io/gallery/index.html ) :
33- declarative visualization, statistics built in
3432 - [ Matplotlib] ( https://matplotlib.org/stable/gallery/index.html ) :
3533 probably the most standard and most widely used
3634 - [ Seaborn] ( https://seaborn.pydata.org/examples/index.html ) :
3735 high-level interface to Matplotlib, statistical functions built in
36+ - [ Vega-Altair] ( https://altair-viz.github.io/gallery/index.html ) :
37+ declarative visualization, statistics built in
3838 - [ Plotly] ( https://plotly.com/python/ ) :
3939 interactive graphs
4040 - [ Bokeh] ( https://demo.bokeh.org/ ) :
@@ -71,7 +71,7 @@ matter of personal preferences.
7171
7272## Getting started with Matplotlib
7373
74- We can start in a Jupyter notebook since notebooks are typically a good fit
74+ We can start in a Jupyter Notebook since notebooks are typically a good fit
7575for data visualizations. But if you prefer to run this as a script, this is
7676also OK.
7777
@@ -399,8 +399,8 @@ ax.tick_params(labelsize=15)
399399 probably the most standard and most widely used
400400 - [Seaborn](https://seaborn.pydata.org/examples/index.html):
401401 high-level interface to Matplotlib, statistical functions built in
402- - [Altair](https://altair-viz.github.io/gallery/index.html):
403- declarative visualization (R users will be more at home) , statistics built in
402+ - [Vega- Altair](https://altair-viz.github.io/gallery/index.html):
403+ declarative visualization, statistics built in
404404 - [Plotly](https://plotly.com/python/):
405405 interactive graphs
406406 - [Bokeh](https://demo.bokeh.org/):
@@ -411,14 +411,14 @@ ax.tick_params(labelsize=15)
411411 R users will be more at home
412412 - [PyNGL](https://www.pyngl.ucar.edu/Examples/gallery.shtml):
413413 used in the weather forecast community
414- - [K3D](https://k3d-jupyter.org/showcase/ ):
415- Jupyter notebook extension for 3D visualization
414+ - [K3D](https://k3d-jupyter.org/gallery/index.html ):
415+ Jupyter Notebook extension for 3D visualization
416416
417417- Browse the various example galleries (links above).
418418- Select one example that is close to your recent visualization project or simply interests you.
419419- Note that you might need to install additional Python packages in order make use of the libraries.
420420 This could be the visualization library itself, and in addition also any required dependency package.
421- - First try to reproduce this example in the Jupyter notebook .
421+ - First try to reproduce this example in the Jupyter Notebook .
422422- Then try to print out the data that is used in this example just before the call of the plotting function
423423 to learn about its structure. Is it a pandas dataframe? Is it a NumPy array? Is it a dictionary? A list?
424424 a list of lists?
0 commit comments