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
Copy file name to clipboardExpand all lines: doc/source/getting_started/index.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -398,7 +398,7 @@ data set, a sliding window of the data or grouped by categories. The latter is a
398
398
<divclass="card-body">
399
399
400
400
Change the structure of your data table in multiple ways. You can :func:`~pandas.melt` your data table from wide to long/tidy form or :func:`~pandas.pivot`
401
-
from long to wide format. With aggregations built-in, a pivot table is created with a sinlge command.
401
+
from long to wide format. With aggregations built-in, a pivot table is created with a single command.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.15.0.rst
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
.. _whatsnew_0150:
2
2
3
-
v0.15.0 (October 18, 2014)
4
-
--------------------------
3
+
Version 0.15.0 (October 18, 2014)
4
+
---------------------------------
5
5
6
6
{{ header }}
7
7
@@ -105,7 +105,7 @@ For full docs, see the :ref:`categorical introduction <categorical>` and the
105
105
106
106
.. _whatsnew_0150.timedeltaindex:
107
107
108
-
TimedeltaIndex/Scalar
108
+
TimedeltaIndex/scalar
109
109
^^^^^^^^^^^^^^^^^^^^^
110
110
111
111
We introduce a new scalar type ``Timedelta``, which is a subclass of ``datetime.timedelta``, and behaves in a similar manner,
@@ -247,8 +247,8 @@ Additionally :meth:`~pandas.DataFrame.memory_usage` is an available method for a
247
247
248
248
.. _whatsnew_0150.dt:
249
249
250
-
.dt accessor
251
-
^^^^^^^^^^^^
250
+
Series.dt accessor
251
+
^^^^^^^^^^^^^^^^^^
252
252
253
253
``Series`` has gained an accessor to succinctly return datetime like properties for the *values* of the Series, if its a datetime/period like Series. (:issue:`7207`)
254
254
This will return a Series, indexed like the existing Series. See the :ref:`docs <basics.dt_accessors>`
- Added support for a ``chunksize`` parameter to ``to_sql`` function. This allows DataFrame to be written in chunks and avoid packet-size overflow errors (:issue:`8062`).
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.17.0.rst
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
.. _whatsnew_0170:
2
2
3
-
v0.17.0 (October 9, 2015)
4
-
-------------------------
3
+
Version 0.17.0 (October 9, 2015)
4
+
--------------------------------
5
5
6
6
{{ header }}
7
7
@@ -181,8 +181,8 @@ Each method signature only includes relevant arguments. Currently, these are lim
181
181
Additional methods for ``dt`` accessor
182
182
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
183
183
184
-
strftime
185
-
""""""""
184
+
Series.dt.strftime
185
+
""""""""""""""""""
186
186
187
187
We are now supporting a ``Series.dt.strftime`` method for datetime-likes to generate a formatted string (:issue:`10110`). Examples:
188
188
@@ -202,8 +202,8 @@ We are now supporting a ``Series.dt.strftime`` method for datetime-likes to gene
202
202
203
203
The string format is as the python standard library and details can be found `here <https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior>`_
204
204
205
-
total_seconds
206
-
"""""""""""""
205
+
Series.dt.total_seconds
206
+
"""""""""""""""""""""""
207
207
208
208
``pd.Series`` of type ``timedelta64`` has new method ``.dt.total_seconds()`` returning the duration of the timedelta in seconds (:issue:`10817`)
0 commit comments