We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 825c33f commit 332a70eCopy full SHA for 332a70e
doc/source/dsintro.rst
@@ -11,6 +11,7 @@
11
np.set_printoptions(precision=4, suppress=True)
12
set_option('display.precision', 4, 'display.max_columns', 8)
13
options.display.max_rows=15
14
+ import pandas as pd
15
16
17
************************
@@ -488,6 +489,12 @@ TimeSeries (which it will be automatically if the index contains datetime
488
489
objects), and the DataFrame index also contains dates, the broadcasting will be
490
column-wise:
491
492
+.. ipython:: python
493
+ :suppress:
494
+
495
+ import warnings
496
+ warnings.filterwarnings("ignore",message='TimeSeries broadcasting',category=FutureWarning)
497
498
.. ipython:: python
499
500
index = date_range('1/1/2000', periods=8)
0 commit comments