We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
string = "HolyMoly'" store.select('df','index == string')
#### Problem description string = "HolyMoly'" do not work pandas 1.0.1
The text was updated successfully, but these errors were encountered:
Thanks @xushengun
The following works for me:
>>> import pandas as pd >>> store = pd.HDFStore('store.h5') >>> df = pd.DataFrame([1], index=['HolyMoly']) >>> store.append('df', df) >>> string = "HolyMoly" >>> store.select('df', 'index == string') 0 HolyMoly 1
Seems that there's a typo in the user guide:
string = "HolyMoly'"
instead of
string = "HolyMoly"
, are you interested in submitting a pull request to fix it?
Sorry, something went wrong.
take
i am intrested in doing it
closing there's no reproducible example, and as it turns out this was intentional
virajmavani
danjglick
No branches or pull requests
Code Sample, a copy-pastable example if possible
string = "HolyMoly'"
store.select('df','index == string')
The text was updated successfully, but these errors were encountered: