DeseoDeSeo
[python] 파이썬 기초1 본문
해당 열을 인덱스로 지정
데이터프레임.set_index("열 이름", inplace=True)
ex) dataframe.set_index(" " , inplace=True)
데이터 프레임_정렬
데이터프레임.sort_values("열 이름", ascending=True)
ascending=True 오름차순
ascending=False 내림차순
번호 매기기
df['no'] = range(1,len(df)+1)
'Python' 카테고리의 다른 글
[Machine learning ] ex11_Textmining(영화리뷰 감성분석) (0) | 2023.09.14 |
---|---|
[Machine Learning] 정리 part.1 (0) | 2023.09.13 |
[ Machine learning ] ex10 선형분류(Logistic Regression) 손글씨 숫자 데이터 분류 실습 (0) | 2023.09.13 |
[Machine Learning] 선형 모델(회귀) 평가 지표 및 데이터 스케일링 (0) | 2023.09.13 |
[Machine Learning ] ex09_보스턴 집값 예측 실습 (0) | 2023.09.07 |