We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6480380 commit 7a53815Copy full SHA for 7a53815
1 file changed
episodes/07-visualization-ggplot-python.md
@@ -92,6 +92,18 @@ To build a `plotnine` graphic we need to:
92
(p9.ggplot(data=surveys_complete))
93
```
94
95
+::::::::::::::::::::::: instructor
96
+
97
+Note `plotnine` contains a *lot* of deprecation warnings in some versions of python/matplotlib,
98
+warnings may need to be suppressed with
99
100
+```python
101
+import warnings
102
+warnings.filterwarnings(action='once')
103
+```
104
105
+::::::::::::::::::::::::::::::::::
106
107
As we have not defined anything else, just an empty figure is available and
108
presented.
109
0 commit comments