beyondthemount.log
로그인
beyondthemount.log
로그인
pandas dataframe
넘어산
·
2024년 1월 2일
팔로우
0
pandas
0
TIL
목록 보기
19/37
데이터 프레임 구조 보기
type(df): 유형 보기
df.info(): 전체적인 구조
df.head(): 앞 5열
df.head(3): 앞 3열
df.tail(): 뒤 5열
데이터 조회하기
df.loc[index]: series 조회
df.loc[[]]: data frame 조회
-df.loc[0:3, "이름":"체중"]
df.iloc
df['이름']
df[0]
통계
df.describe(): 평균값
df.describe(include="all"): 기술 전반 통계
문자열 찾기
df['이름'].str.contains('')
df['이름'].str[0] == '정'.sum(): 몇명인지 보기
df[df['이름'].str[0] == '정']
넘어산
팔로우
이전 포스트
pandas 한글 깨짐 해결
다음 포스트
dataframe
0개의 댓글
댓글 작성