-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
DOC: add sections about big new features (CoW, string dtype) to 3.0.0 whatsnew notes #61724
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
DOC: add sections about big new features (CoW, string dtype) to 3.0.0 whatsnew notes #61724
Conversation
how pandas operates with respect to copies and views. A summary of the changes: | ||
|
||
1. The result of *any* indexing operation (subsetting a DataFrame or Series in any way, | ||
i.e. including accessing a DataFrame column as a Series) or any method returning a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i.e. including accessing a DataFrame column as a Series) or any method returning a | |
e.g. accessing a DataFrame column as a Series) or any method returning a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am going to keep the current wording here because I specifically wanted to highlight that accessing a column is also an indexing operation (people might think first about selecting rows, boolean filtering etc, but accessing a column is probably the most common (and most affected) case)
This pull request is stale because it has been open for thirty days with no activity. Please update and respond to this comment if you're still interested in working on this. |
Going to merge this to have something in the docs, we can always further refine it so more feedback is certainly welcome! |
We don't actually yet list the bigger features (string dtype, CoW, no silent downcasting) in the 3.0.0 whatsnew page, so starting to do that here.
Already pushed a section about string dtype, will further add a section about CoW and the downcasting.