dataiku / dss-plugin-neo4j

A DSS Plugin to interact with the Neo4j graph database
Apache License 2.0
7 stars 1 forks source link

Allow int/bigint columns to have missing values without converting to float #24

Closed StanislasGuinel closed 2 years ago

StanislasGuinel commented 3 years ago

Before it failed on integer columns with missing values (with the error ""Integer column has NA values in column ") because infer_withpandas was False and pandas doesn't support missing values in integer. Now, int are casted to np.object because they can have missing values but are still interpreted as integer by neo4j