라벨이 csv인 게시물 표시

[python]파이썬: pandas read csv에서 OSError: Initializing from file failed

이미지
에러 해결방법 import pandas as pd pd.read_csv(your_file_path, engine="python") engine="python" 을 명시하면 OSError 해결이 가능합니다. 참고문헌 https://kkckc.tistory.com/187

[python]파이썬: csv reader header skip (첫번째 행 무시하기, 안읽기)

이미지
header를 skip하기 위해서는 next() 를 하면 됩니다. ex) 아래와 같은 데이터를 가지는 excel 파일에서 header를 skip 했을 때와 하지 않았을 때를 비교 해보겠습니다. next()를 사용하지 않았을 경우 next()를 사용했을 경우 연관문헌 pandas 특정 행에 값 넣기 https://daewoonginfo.blogspot.com/2019/04/pandas.html 참고자료 https://evanhahn.com/python-skip-header-csv-reader/