그냥 강의봐도 이해가 안됐던 apply, 영어로 읽으니 한층 더 이해가 안된다. 하지만 해석해보자
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.apply.html
Objects passed to the function are Series objects whose index is either the DataFrame’s index (axis=0) or the DataFrame’s columns (axis=1). By default (result_type=None), the final return type is inferred from the return type of the applied function. Otherwise, it depends on the result_type argument.
passed to : 전달되는
함수에 전달되는 개체들은 Series objects다. (축이 행이거나, 열이거나).
return type은 함수의 return type에 따라 다르다.
'파이썬 > 코딩 영어단어공부' 카테고리의 다른 글
링크 : 코딩용어 IT영단어정리(쉬움) (0) | 2022.07.09 |
---|---|
스칼라 scalar (0) | 2022.06.24 |
Pandas : pd.to_timedelta 함수 (0) | 2022.06.20 |
Parameter(매개변수),Argument(인자) : 정의와 차이점 (0) | 2022.06.18 |
Feature : 머신러닝 (0) | 2022.06.17 |