profile_report
-
df.profile_report 에러 (typeguard.TypeCheckError: argument "config_file" (None) did not match any element in the union)Data & ML & AI/Pandas & Scikit-Learn 2023. 10. 17. 12:05
다른 컴퓨터에서 돌리던 코드를 돌렸는데 profie_report 부분에서 에러가 발생합니다. import pandas as pd df = pd.read_csv('file.csv', index_col=None) df.profile_report() # 결과 Traceback (most recent call last): ... typeguard.TypeCheckError: argument "config_file" (None) did not match any element in the union: pathlib.Path: is not an instance of pathlib.Path str: is not an instance of str 에러에서는 config_file이 잘못되었다고 합니다. 하지만 # 대안1 ..