You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: source/rst/heavy_tails.rst
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,12 @@ Let's start with some imports:
79
79
80
80
from scipy.stats import cauchy
81
81
82
+
The following two lines can be added to avoid an annoying FutureWarning, and prevent a specific compatibility issue between pandas and matplotlib from causing problems down the line:
83
+
84
+
.. code-block:: ipython
85
+
86
+
from pandas.plotting import register_matplotlib_converters
Copy file name to clipboardExpand all lines: source/rst/kesten_processes.rst
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,13 @@ Let's start with some imports:
47
47
import matplotlib.pyplot as plt
48
48
%matplotlib inline
49
49
50
+
The following two lines can be added to avoid an annoying FutureWarning, and prevent a specific compatibility issue between pandas and matplotlib from causing problems down the line:
51
+
52
+
.. code-block:: ipython
53
+
54
+
from pandas.plotting import register_matplotlib_converters
0 commit comments