-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: doc warnings #15647
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: doc warnings #15647
Conversation
doc/source/whatsnew/v0.10.1.txt
Outdated
@@ -58,7 +58,8 @@ perform queries on a table, by passing a list to ``data_columns`` | |||
|
|||
# on-disk operations | |||
store.append('df', df, data_columns = ['B','C','string','string2']) | |||
store.select('df',[ 'B > 0', 'string == foo' ]) | |||
store.select('df').dtypes |
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.
@jorisvandenbossche attempting to see what is going on here......
don't merge yet. |
Codecov Report
@@ Coverage Diff @@
## master #15647 +/- ##
=========================================
Coverage ? 91%
=========================================
Files ? 143
Lines ? 49324
Branches ? 0
=========================================
Hits ? 44885
Misses ? 4439
Partials ? 0
Continue to review full report at Codecov.
|
ok thanks |
ok I think this fixed the HDFStore issues. |
Cool. |
@jorisvandenbossche no a list is still accepted (but nicer with the and). The issue was the bare strings, e.g. I put a note on the original issue #15544 to see if @chris-b1 has any ideas. |
@jorisvandenbossche ok this fixes a bunch of warnings (still a couple remaining) :> some png links and a LICENSE link........but enough for now. |
The png and license link warnings are already present for a few years, so not too urgent :-) |
The issue here was that foo = pd.Series([1,2], name='foo') Now this comparison was unpacking the ints in that store.select('df',[ 'B > 0', 'string == foo' ]) In past doc versions, this was just returning an empty result (here). This is exactly that type of invalid comparisons we were trying to catch with #15544, so I think it's good that this raised! |
@chris-b1 ahh that makes sense then. thanks for the look! |
Author: Jeff Reback <[email protected]> Closes pandas-dev#15647 from jreback/doc and squashes the following commits: 6afb394 [Jeff Reback] gbq install adjustment 0fd4499 [Jeff Reback] maybe d5ec228 [Jeff Reback] DOC: fixup some doc-links b7ea898 [Jeff Reback] DOC: some deprecation warnings removed
No description provided.