Skip to content

DOC: remove rplot seaborn equivalent example figures #13954

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 10, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed doc/source/_static/rplot-seaborn-example1.png
Binary file not shown.
Binary file removed doc/source/_static/rplot-seaborn-example2.png
Binary file not shown.
Binary file removed doc/source/_static/rplot-seaborn-example3.png
Binary file not shown.
Binary file removed doc/source/_static/rplot-seaborn-example3b.png
Binary file not shown.
Binary file removed doc/source/_static/rplot-seaborn-example4.png
Binary file not shown.
Binary file removed doc/source/_static/rplot-seaborn-example6.png
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/source/dsintro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ Panel4D (Experimental)

.. warning::

In 0.19.0 ``Panel4D` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__. Pandas provides a :meth:`~Panel4D.to_xarray` method to automate this conversion.
In 0.19.0 ``Panel4D`` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__. Pandas provides a :meth:`~Panel4D.to_xarray` method to automate this conversion.

``Panel4D`` is a 4-Dimensional named container very much like a ``Panel``, but
having 4 named dimensions. It is intended as a test bed for more N-Dimensional named
Expand Down Expand Up @@ -1032,7 +1032,7 @@ PanelND (Experimental)

.. warning::

In 0.19.0 ``PanelND` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__.
In 0.19.0 ``PanelND`` is deprecated and will be removed in a future version. The recommended way to represent these types of n-dimensional data are with the `xarray package <http://xarray.pydata.org/en/stable/>`__.

PanelND is a module with a set of factory functions to enable a user to construct N-dimensional named
containers like Panel4D, with a custom set of axis labels. Thus a domain-specific container can easily be
Expand Down
12 changes: 6 additions & 6 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -487,13 +487,13 @@ worth trying.
you can end up with column(s) with mixed dtypes. For example,

.. ipython:: python
:okwarning:
:okwarning:

df = pd.DataFrame({'col_1':range(500000) + ['a', 'b'] + range(500000)})
df.to_csv('foo')
mixed_df = pd.read_csv('foo')
mixed_df['col_1'].apply(type).value_counts()
mixed_df['col_1'].dtype
df = pd.DataFrame({'col_1':range(500000) + ['a', 'b'] + range(500000)})
df.to_csv('foo')
mixed_df = pd.read_csv('foo')
mixed_df['col_1'].apply(type).value_counts()
mixed_df['col_1'].dtype

will result with `mixed_df` containing an ``int`` dtype for certain chunks
of the column, and ``str`` for others due to the mixed dtypes from the
Expand Down
3 changes: 0 additions & 3 deletions doc/source/whatsnew/v0.19.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,6 @@ default of the index) in a DataFrame.

from pandas.compat import StringIO

.. _whatsnew_0190.enhancements.read_csv_dupe_col_names_support:


:ref:`Duplicate column names <io.dupe_names>` are now supported in :func:`read_csv` whether
they are in the file or passed in as the ``names`` parameter (:issue:`7160`, :issue:`9424`)

Expand Down
8 changes: 4 additions & 4 deletions pandas/tseries/tdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1010,14 +1010,14 @@ def timedelta_range(start=None, end=None, periods=None, freq='D',
Make the interval closed with respect to the given frequency to
the 'left', 'right', or both sides (None)

Notes
-----
2 of start, end, or periods must be specified

Returns
-------
rng : TimedeltaIndex

Notes
-----
2 of start, end, or periods must be specified.

To learn more about the frequency strings, please see `this link
<http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__.
"""
Expand Down