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 821ef91 commit f6bf25aCopy full SHA for f6bf25a
doc/source/whatsnew/v1.0.0.rst
@@ -181,14 +181,14 @@ Backwards incompatible API changes
181
182
.. ipython:: python
183
184
- left_df = pd.DataFrame({"colors": ["blue", "red"]}, index = pd.Index([0, 1]))
185
- 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]))
186
187
*pandas 0.25.x*
188
189
190
left_df.merge(right_df, left_index=True, right_index=True, how="right")
191
- colors hats
+ colors hats
192
0 blue big
193
1 red small
194
0 commit comments