Skip to content
Snippets Groups Projects

F gaps in int columns

Merged Florian Spreckelsen requested to merge f-gaps-in-int-columns into dev
All threads resolved!
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline

Files

@@ -244,8 +244,8 @@ class TableImporter():
Parameters
----------
converters : dict
Dict with column names as keys and converter functions as values. This dict also defines
what columns are required to exist throught the existing keys. The converter functions are
Dict with column names as keys and converter functions as values. This dict's keys also
define what columns must exist. The converter functions are
applied to the cell values. They should also check for ValueErrors, such that a separate
value check is not necessary.
@@ -267,7 +267,7 @@ class TableImporter():
convert_int_to_nullable_int : bool, optional
Whether to convert all integer datatypes to ``pandas.Int64Dtype()``
which is nullable, to allow for integer columns with empty fields. If
set to False, a ``DataInConsistencyError`` will be raised in case of
set to False, a ``DataInconsistencyError`` will be raised in case of
empty fields in integer columns. Default is True.
"""
Loading