인프런 커뮤니티 질문&답변
처음부터 막히네요
작성
·
231
1
ileNotFoundError Traceback (most recent call last) <ipython-input-5-7186dcabf0e9> in <module> 3 4 # Load the CSV file "marathon_results_2017.csv" under "data" folder ----> 5 marathon_2017 = pd.read_csv("./data/marathon_results_2017.csv") 6 7 # Display the first five initial rows using the .head() method ~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/parsers.py in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, us
이렇게 뜨는데 어떻하죠?
파일 경로 문제인거같기도하고 잘 모르겟네요
지우고 다시 깔아야 하나요?
퀴즈
58%나 틀려요. 한번 도전해보세요!
Pandas 라이브러리를 사용하여 CSV 파일을 데이터프레임으로 불러오고, 데이터의 첫 몇 행과 전체 구조 요약 정보를 확인하는 기본적인 메서드는 무엇일까요?
load_csv(), first(), summary()
read_csv(), head(), info()
import_csv(), peek(), describe()
get_csv(), top(), structure()





