| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Stefan vdW for the fix.
* added a unittest for flatten_dtype
|
|
|
|
| |
* Force a file to be opened in 'U' mode (bug #1473)
|
| |
|
| |
|
|
|
|
| |
genfromtxt
|
| |
|
|
|
|
| |
columns to be dropped
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- prevents a `default` of 0 to be overwritten during initialization
- allows the `missing_values` to be a comma-separated string
* io.genfromtxt
- `usecols` can now be a single integer
- for `usecols` and `names` to list (for compatibility w/ Python 2.5)
- negative values in `usecols` are properly transformed to positive integers
- fixed `usecols` with named columns
|
|
|
|
|
|
|
|
|
|
| |
- prevents an explicit default to be overwritten during upgrade
* io.genfromtxt
- deprecate `skiprows` for `skip_header`
- deprecate `missing` for `missing_values`
- `missing_values` can now be a sequence
- add support for `filling_values`
* fixed ticket #1257
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
#1253)
* lib._iotools:
- NameValidator : add the `nbfields` optional argument to validate
- add easy_dtype
* lib.io.genfromtxt :
- add the `autostrip` optional argument (ticket #1238)
- use `invalid_raise=True` as default
- use the easy_dtype mechanism (ticket #1252)
|
|
|
|
|
|
|
| |
- use '1' instead of '0' to test the update
- add `iterupgrade` to upgrade from an iterator
* io.genfromtxt (bug #1212)
- use `iterupgrade` to upgrade the converters, and reprocess if there's a problem to catch the offending line
|
|
|
|
| |
columns (bug #1212)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
* add the flatten_base keyword to flatten_dtype
lib.io.genfromtxt
* Use flatten_dtype(...,flatten_base=True) to deal with fields w/ shape
lib.io.loadtxt
* fixed for the case when one of the fields is object
|
|
|
|
|
|
| |
Raise a NotImplementedError if the dtype is nested.
* _iotools : make sure StringConverter gets properly initiated when a function returning a np.object is used as input parameter.
|
|
|
|
| |
define it.
|
|
|
|
|
|
|
|
| |
- add a _checked attribute to indicate whether the converter has been upgraded or not.
- switched the default value for bool to False
* io.genfromtxt:
- fixed for the case where a whole column is masked: switch to bool or the common dtype (if needed)
|
|
* lib.io : introduced genfromtxt, ndfromtxt, mafromtxt, recfromtxt, recfromcsv.
|