분류 전체보기256 df['칼럼명'].map('매핑 정보') - 값 치환, 대체 하나의 칼럼인 Series형으로만 적용 가능 map_info = {'M' : '남자', 'F' : '여자'}df['Gender'] = df['Gender'].map(map_info)df 2024. 10. 3. datetime 날짜형으로 변환 pd.to_datetime, pd.to_timedelta df['Date of Birth'] = pd.to_datetime(df['Date of Birth'])df['Year of Birth'] = df['Date of Birth'].dt.yeardf['Month of Birth'] = df['Date of Birth'].dt.monthdf['Day of Birth'] = df['Date of Birth'].dt.day 날짜끼리 연산하려면 이런식으로 timedelta로 바꿔줘야된다.df['Day of Birth_2'] = pd.to_timedelta(df['Day of Birth'], unit='day') month 단위는 아예 다른 라이브러리에서 가능한 듯 2024. 9. 28. [정리] Pandas 전처리 기본 df = df.dropna(subset='Date of Birth') astypeint, float, strdf['Height'] = df['Height'].astype(str)df['Height'] = df['Height'].astype('str') 2024. 9. 28. SettingWithCopyWarning 알람 원인, 끄기 py:1: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.Try using .loc[row_indexer,col_indexer] = value insteadSee the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy https://blog.naver.com/PostView.nhn?blogId=wideeyed&logNo=221817400937 [Pandas] SettingWithCopy Warning or .. 2024. 9. 28. 필터링 된 행 전체 삭제하는 코드 오피스튜터 - 필터링된 행전체를 삭제하는 vba??? (officetutor.co.kr) 오피스튜터 - 필터링된 행전체를 삭제하는 vba???오피스튜터 - 필터링된 행전체를 삭제하는 vba???www.officetutor.co.kr 예시에는 B2:B26이 전체범위. Sub 필터후삭제() Selection.AutoFilter Field:=2, Criteria1:="bbb" Range("B2:B26").EntireRow.Delete ActiveSheet.ShowAllDataEnd Sub [EXCEL] VBA 중급 9 - 필터 파헤치기 : 네이버 블로그 (naver.com) [EXCEL] VBA 중급 9 - 필터 파헤치기안녕하세요 오늘은 엑셀의 핵심 기능 중 하나인 "필터"에 대해 알아보겠습니다. .. 2024. 9. 23. 데이터 인코딩 LabelEncoder(), fit, transform https://sevillabk.github.io/encoding/ [사이킷런] 데이터 인코딩사이킷런에서 제공하는 인코딩 클래스 활용하기SevillaBK.github.io 개어렵다 from sklearn.preprocessing import LabelEncoderitems = ['TV', '냉장고', '전자레인지', '컴퓨터', '선풍기', '선풍기', '믹서', '믹서']le = LabelEncoder()le.fit(items)labels = le.transform(items)print(labels) [0 1 4 5 3 3 2 2] labels = le.fit_transform(items)print(labels) [0 1 4 5 3 3 2 2] 2024. 9. 21. train_test_split에서 stratify 역할 stratifyt - train 샘플을 추출할때 비율을 맞게 뽑아주는 역할을 한다 https://yeko90.tistory.com/entry/what-is-stratify-in-traintestsplit [sklearn] 'stratify' 의 역할(train_test_split)[ic]train_test_split[/ic]에서 [ic]stratify[/ic]가 뭐 하는 녀석인지 헷갈리는가? 그렇다면 잘 들어왔다. 이번 포스팅에서는 [ic]stratify[/ic]를 미적용했을 때 어떤 문제가 발생하는지 알아보고, [ic]stratify[/ic]yeko90.tistory.com 2024. 9. 21. numeric, categorical 나누는 순환문 코드 numeric_list=[]categoical_list=[]for i in df.columns : if df[i].dtypes == 'O' : categoical_list.append(i) else : numeric_list.append(i)print("categoical_list :", categoical_list)print("numeric_list :", numeric_list) 2024. 9. 21. 이전 1 2 3 4 5 ··· 32 다음