File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ The exact details of what an :class:`~pandas.api.extensions.ExtensionArray` is a
76
76
beyond the scope of this introduction. See :ref: `basics.dtypes ` for more.
77
77
78
78
If you know you need a NumPy array, use :meth: `~Series.to_numpy `
79
- or :meth: `numpy.ndarray. asarray `.
79
+ or :meth: `numpy.asarray `.
80
80
81
81
.. ipython :: python
82
82
Original file line number Diff line number Diff line change @@ -984,9 +984,9 @@ Removal of prior version deprecations/changes
984
984
.. ipython :: python
985
985
986
986
np.random.seed(1234 )
987
- df = DataFrame(np.random.randn(5 , 2 ),
988
- columns = list (' AB' ),
989
- index = date_range(' 20130101 ' , periods = 5 ))
987
+ df = pd. DataFrame(np.random.randn(5 , 2 ),
988
+ columns = list (' AB' ),
989
+ index = pd. date_range(' 2013-01-01 ' , periods = 5 ))
990
990
df
991
991
992
992
Previously
You can’t perform that action at this time.
0 commit comments