Python Pandas 자료구조 Series 알아보기
Pandas의 데이터 유형에는 1차원 데이터인 Series와 2차원 데이터인 DataFrame이 있습니다. 이번 포스팅에서는 Series를 만드는 방법에 대해서 알아 보겠습니다. class pandas.Series(data = None, index = None, dtype = None, name = None, copy = False, fastpath = False) Parameter data : array-like, iterable, dict, scalar value index : array-like or index, 단, data의 개수와 같아야 합니다. index를 지정해주지 않는다면 0~n까지의 값이 순서대로 부여 됩니다. dtype : str, numpy.dtype, ExtensionDtype, ..
2022. 8. 15.