@@ -107,7 +107,7 @@ Indexing API Changes
107
107
~~~~~~~~~~~~~~~~~~~~
108
108
109
109
Prior to 0.13, it was impossible to use a label indexer (``.loc/.ix``) to set a value that
110
- was not contained in the index of a particular axis. (:issue:`2578`). See more :ref:`here <indexing.basics.partial_setting>`
110
+ was not contained in the index of a particular axis. (:issue:`2578`). See more :ref:`the docs <indexing.basics.partial_setting>`
111
111
112
112
In the ``Series`` case this is effectively an appending operation
113
113
@@ -272,7 +272,7 @@ HDFStore API Changes
272
272
273
273
- Significant table writing performance improvements
274
274
- handle a passed ``Series`` in table format (:issue:`4330`)
275
- - can now serialize a ``timedelta64[ns]`` dtype in a table (:issue:`3577`), See :ref:`here for an example <io.hdf5-timedelta>`.
275
+ - can now serialize a ``timedelta64[ns]`` dtype in a table (:issue:`3577`), See :ref:`the docs <io.hdf5-timedelta>`.
276
276
- added an ``is_open`` property to indicate if the underlying file handle is_open;
277
277
a closed store will now report 'CLOSED' when viewing the store (rather than raising an error)
278
278
(:issue:`4409`)
@@ -310,7 +310,7 @@ HDFStore API Changes
310
310
- removed the ``warn`` argument from ``open``. Instead a ``PossibleDataLossError`` exception will
311
311
be raised if you try to use ``mode='w'`` with an OPEN file handle (:issue:`4367`)
312
312
- allow a passed locations array or mask as a ``where`` condition (:issue:`4467`).
313
- See :ref:`here <io.hdf5-where_mask>` for an example.
313
+ See :ref:`the docs <io.hdf5-where_mask>` for an example.
314
314
- add the keyword ``dropna=True`` to ``append`` to change whether ALL nan rows are not written
315
315
to the store (default is ``True``, ALL nan rows are NOT written), also settable
316
316
via the option ``io.hdf.dropna_table`` (:issue:`4625`)
@@ -339,7 +339,7 @@ Enhancements
339
339
get_dummies([1, 2, np.nan], dummy_na=True)
340
340
341
341
342
- - ``timedelta64[ns]`` operations. See :ref:`here <timeseries.timedeltas_convert>` for the docs.
342
+ - ``timedelta64[ns]`` operations. See :ref:`the docs <timeseries.timedeltas_convert>` for the docs.
343
343
344
344
.. warning::
345
345
@@ -358,7 +358,7 @@ Enhancements
358
358
359
359
A Series of dtype ``timedelta64[ns]`` can now be divided by another
360
360
``timedelta64[ns]`` object to yield a ``float64`` dtyped Series. This
361
- is frequency conversion. See :ref:`here <timeseries.timedeltas_convert>` for the docs.
361
+ is frequency conversion. See :ref:`the docs <timeseries.timedeltas_convert>` for the docs.
362
362
363
363
.. ipython:: python
364
364
@@ -476,7 +476,9 @@ Enhancements
476
476
t = Timestamp('20130101 09:01:02')
477
477
t + pd.datetools.Nano(123)
478
478
479
- - A new method, ``isin`` for DataFrames, plays nicely with boolean indexing. To get the rows where any of the conditions are met:
479
+ - A new method, ``isin`` for DataFrames, plays nicely with boolean indexing. See :ref:`the docs<indexing.basics.indexing_isin>` for more.
480
+
481
+ To get the rows where any of the conditions are met:
480
482
481
483
.. ipython:: python
482
484
@@ -486,8 +488,6 @@ Enhancements
486
488
mask
487
489
dfi[mask.any(1)]
488
490
489
- :ref:`See the docs<indexing.basics.indexing_isin>` for more.
490
-
491
491
- ``Series`` now supports a ``to_frame`` method to convert it to a single-column DataFrame (:issue:`5164`)
492
492
493
493
- All R datasets listed here http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/00Index.html can now be loaded into Pandas objects
@@ -498,12 +498,12 @@ Enhancements
498
498
com.load_data('Titanic')
499
499
500
500
- ``tz_localize`` can infer a fall daylight savings transition based on the structure
501
- of the unlocalized data (:issue:`4230`), see :ref:`here <timeseries.timezone>`
501
+ of the unlocalized data (:issue:`4230`), see :ref:`the docs <timeseries.timezone>`
502
502
503
- - DatetimeIndex is now in the API documentation, see :ref:`here <api.datetimeindex>`
503
+ - DatetimeIndex is now in the API documentation, see :ref:`the docs <api.datetimeindex>`
504
504
505
505
- :meth:`~pandas.io.json.json_normalize` is a new method to allow you to create a flat table
506
- from semi-structured JSON data. :ref:`See the docs<io.json_normalize>` (:issue:`1067`)
506
+ from semi-structured JSON data. See :ref:`the docs<io.json_normalize>` (:issue:`1067`)
507
507
508
508
509
509
- Added PySide support for the qtpandas DataFrameModel and DataFrameWidget.
@@ -517,11 +517,10 @@ Enhancements
517
517
df.interpolate()
518
518
519
519
Additionally, the ``method`` argument to ``interpolate`` has been expanded
520
- to include 'nearest', 'zero', 'slinear', 'quadratic', 'cubic',
521
- 'barycentric', 'krogh', 'piecewise_polynomial', 'pchip' or "polynomial" or 'spline'
522
- and an integer representing the degree or order of the approximation. The new methods
523
- require scipy_. Consult the Scipy reference guide_ and documentation_ for more information
524
- about when the various methods are appropriate. See :ref:`the docs<missing_data.interpolate>`.
520
+ to include ``'nearest', 'zero', 'slinear', 'quadratic', 'cubic',
521
+ 'barycentric', 'krogh', 'piecewise_polynomial', 'pchip', `polynomial`, 'spline'``
522
+ The new methods require scipy_. Consult the Scipy reference guide_ and documentation_ for more information
523
+ about when the various methods are appropriate. See :ref:`the docs<missing_data.interpolate>`.
525
524
526
525
Interpolate now also accepts a ``limit`` keyword argument.
527
526
This works similar to ``fillna``'s limit:
@@ -560,8 +559,7 @@ Experimental
560
559
# pure Python evaluation
561
560
%timeit df1 + df2 + df3 + df4
562
561
563
- For more details, see the :ref:`enhancing performance documentation on eval
564
- <enhancingperf.eval>`
562
+ For more details, see the :ref:`the docs<enhancingperf.eval>`
565
563
566
564
- Similar to ``pandas.eval``, :class:`~pandas.DataFrame` has a new
567
565
``DataFrame.eval`` method that evaluates an expression in the context of
@@ -614,11 +612,10 @@ Experimental
614
612
df.query('a < b < c')
615
613
616
614
selects all the rows of ``df`` where ``a < b < c`` evaluates to ``True``.
617
- For more details see the :ref:`indexing documentation on query
618
- <indexing.query>`.
615
+ For more details see the :ref:`the docs<indexing.query>`.
619
616
620
617
- ``pd.read_msgpack()`` and ``pd.to_msgpack()`` are now a supported method of serialization
621
- of arbitrary pandas (and python objects) in a lightweight portable binary format. :ref:`See the docs<io.msgpack>`
618
+ of arbitrary pandas (and python objects) in a lightweight portable binary format. See :ref:`the docs<io.msgpack>`
622
619
623
620
.. warning::
624
621
0 commit comments