We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ec7d0 commit c238b50Copy full SHA for c238b50
doc/source/whatsnew/v1.0.0.rst
@@ -298,14 +298,14 @@ New repr for :class:`~pandas.arrays.IntervalArray`
298
299
.. ipython:: python
300
301
- left_df = pd.DataFrame({"colors": ["blue", "red"]}, index = pd.Index([0, 1]))
302
- right_df = pd.DataFrame({"hats": ["small", "big"]}, index = pd.Index([1, 0]))
+ left_df = pd.DataFrame({"colors": ["blue", "red"]}, index=pd.Index([0, 1]))
+ right_df = pd.DataFrame({"hats": ["small", "big"]}, index=pd.Index([1, 0]))
303
304
*pandas 0.25.x*
305
306
307
left_df.merge(right_df, left_index=True, right_index=True, how="right")
308
- colors hats
+ colors hats
309
0 blue big
310
1 red small
311
0 commit comments