Skip to content

Commit

Permalink
fix(eda): add geopoint in type count
Browse files Browse the repository at this point in the history
  • Loading branch information
jinglinpeng committed Apr 28, 2021
1 parent 5974094 commit 94cbca2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dataprep/eda/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,8 @@ def get_dtype_cnts_and_num_cols(
dtype_cnts["DateTime"] += 1
elif is_dtype(col_dtype, GeoGraphy()):
dtype_cnts["GeoGraphy"] += 1
elif is_dtype(col_dtype, GeoPoint()):
dtype_cnts["GeoPoint"] += 1
else:
raise NotImplementedError
return dtype_cnts, num_cols

0 comments on commit 94cbca2

Please sign in to comment.