Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add whatsnew, v0.25.0.rst
  • Loading branch information
tamuhey committed Jan 27, 2019
commit 55d4cc3ca5f978619d802243e9ea4a97111d642c
11 changes: 11 additions & 0 deletions doc/source/whatsnew/v0.25.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ Backwards incompatible API changes

.. _whatsnew_0250.api.other:

Indexing and getitem
^^^^^^^^^^^^^^^^^^^^
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not exactly what I was after. Let's just do a single line for now.

Copy link
Contributor Author

@tamuhey tamuhey Jan 28, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jreback Sorry, I cannot understand what you mean.
Please tell me more concretely.


Indexing and getitem of pd.dataframe now accept zerodim np.array.

.. ipython:: python
df = pd.DataFrame([[1, 2], [3, 4]])[np.array(0)]
df.iloc[np.array(0)]
df.loc[np.array(0)]
df[np.array(0)]

Other API Changes
^^^^^^^^^^^^^^^^^

Expand Down