We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ef99a commit a5bfd56Copy full SHA for a5bfd56
README.md
@@ -51,7 +51,7 @@ df = pd.DataFrame({
51
result = df.select('A', 'B')
52
53
# Negative selection
54
-result = df.select(-'A')
+result = df.select('-A')
55
56
# Filter rows redirecting to .query() (the _ avoids overlapping with pandas.DataFrame.where)
57
result = df.where_('A > 2')
@@ -76,4 +76,4 @@ Contributions are welcome! Feel free to open an issue or submit a pull request o
76
77
## License
78
79
-This project is licensed under the GPLv3 License. See the LICENSE file for details.
+This project is licensed under the GPLv3 License. See the LICENSE file for details.
0 commit comments