본문 바로가기
2/[ Machine Learning ]

Why do some pandas commands end with parentheses, and others don't?

by Kieran_Han 2020. 11. 26.

Source: youtu.be/hSrDViyKWVk

movies = pd.read_csv('http://bit.ly/imdbrathings')

movies.head()

#숫자로 표현된 Column들만 정리해서 보여줌

movies.describe()

movie.dtypes

type(movies) -> pandas.core.frame.DataFrame

#object data 포함해서 확인하기

moives.describe(include=['object'])

 

괄호 안 아무곳 커서 클릭 후 'Shift + Tab' 누르면 함수 설명 조회 가능

' > [ Machine Learning ]' 카테고리의 다른 글

MNIST  (0) 2020.12.03
Overfitting  (0) 2020.12.02
Machine Learning System의 종류  (0) 2020.12.02
How do I select a pandas Series from a DataFrame  (0) 2020.11.26
How do I read a tabular data file into pandas?  (0) 2020.11.26