We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
from SO
In [2]: df = DataFrame(np.random.randn(1000,2),columns=list('AB')) In [3]: df.to_hdf('test.h5','df',mode='w',format='table',data_columns=True) In [4]: i = pd.read_hdf('test.h5','df',chunksize=10) In [5]: i Out[5]: <pandas.io.pytables.TableIterator at 0x108f397d0> In [6]: i.coordinates Out[6]: Int64Index([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ... 990, 991, 992, 993, 994, 995, 996, 997, 998, 999], dtype='int64', length=1000)
These coordinates could be represented by slice(0,1000,10) in this case
slice(0,1000,10)
The text was updated successfully, but these errors were encountered:
Seems like this hasn't gotten traction in a while so closing
Sorry, something went wrong.
No branches or pull requests
from SO
These coordinates could be represented by
slice(0,1000,10)
in this caseThe text was updated successfully, but these errors were encountered: