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