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
Initialising an empty :class:`pandas.core.series.Series` without specifying a dtype will raise a `FutureWarning` now
363
+
Initialising an empty :class:`pandas.Series` without specifying a dtype will raise a `DeprecationWarning` now
364
364
(:issue:`17261`). The default dtype will change from ``float64`` to ``object`` in future releases so that it is
365
365
consistent with the behaviour of :class:`DataFrame` and :class:`Index`.
366
366
@@ -370,7 +370,7 @@ consistent with the behaviour of :class:`DataFrame` and :class:`Index`.
370
370
371
371
In [1]: pd.Series()
372
372
Out[2]:
373
-
FutureWarning: The default dtype for empty Series will be 'object' instead of 'float64' in the next version. Specify a dtype explicitly to silence this warning.
373
+
DeprecationWarning: The default dtype for empty Series will be 'object' instead of 'float64' in the next version. Specify a dtype explicitly to silence this warning.
0 commit comments