소스 검색

Fix for converting float strings to float when the columns contains empty values.

ogert 4 년 전
부모
커밋
c14a86dc71
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      cdplib/db_migration/MigrationCleaning.py

+ 3 - 0
cdplib/db_migration/MigrationCleaning.py

@@ -397,6 +397,9 @@ class MigrationCleaning:
                 elif python_type == float:
                     
                     data[column] = data[column].fillna(np.inf)
+                    # Replaces empty fields when type is string
+                    if data[column].dtypes == object:
+                        data[column] = data[column].replace(r'^\s*$', str(np.inf), regex=True)
                     data[column] = data[column].astype(python_type)
 
                 else: