You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
complevel : int, 0-9, default None
Specifies a compression level for data.
A value of 0 disables compression.
That doesn't actually answer the question of what compression level is used when the default (None) is used, though. Is None translated further down to 0? it turns out yes, but you have to dig in the code to actually figure that out. And it could as well have been translated eventually to any other value.
Two options:
Actually change the default in the complevel argument to be "0". (It's an immutable object, so it's fine as a default value for a function argument.)
Just adjust the doc in some way.
When the right solution is decided, I can do a pull request with it. Thanks!
The text was updated successfully, but these errors were encountered:
The doc for the
HDFStore
class mentions:That doesn't actually answer the question of what compression level is used when the default (None) is used, though. Is None translated further down to 0? it turns out yes, but you have to dig in the code to actually figure that out. And it could as well have been translated eventually to any other value.
Two options:
complevel
argument to be "0". (It's an immutable object, so it's fine as a default value for a function argument.)When the right solution is decided, I can do a pull request with it. Thanks!
The text was updated successfully, but these errors were encountered: