Skip to content
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

docs(python): Add 'frame_equal' renamed to 'equals' comment to v1 Upgrade Guide #18044

Closed
Closed
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
8 changes: 6 additions & 2 deletions docs/releases/upgrade/1.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ shape: (3, 1)

In `.str.to_datetime`, when specifying `%.f` as the format, the default was to set the resulting datatype to nanosecond precision. This has been changed to microsecond precision.

#### Example
**Example**

**Before**

Expand Down Expand Up @@ -634,6 +634,10 @@ True
False
```

### `DataFrame.frame_equal(df)` renamed to `DataFrame.equals(df)`

The method `frame_equal` has been renamed to `equals`.

### Remove `columns` parameter from `nth` expression function

The `columns` parameter was removed in favor of treating positional inputs as additional indices.
Expand Down Expand Up @@ -801,7 +805,7 @@ There may be subtle differences between this engine and the previous default (`x
One clear difference is that the `calamine` engine does not support the `engine_options` parameter.
If you cannot get your desired behavior with the `calamine` engine, specify `engine="xlsx2csv"` to restore previous behavior.

### Example
**Example**

Before:

Expand Down