본문 바로가기

전체 글256

필터링 된 행 전체 삭제하는 코드 오피스튜터 - 필터링된 행전체를 삭제하는 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.
컬럼 값에 따라 조건 변경 if문 없이 https://wooono.tistory.com/293 [Python] Pandas DataFrame 컬럼 값 조건 변경DataFrame 생성 import pandas as pd data = {'name':['michael','louis','jack','jasmine'], 'grades':[90,80,70,60], 'result':['N/A','N/A','N/A','N/A']} df = pd.DataFrame(data,columns=['name','grades','result']) # name grades result #0 michael 90 N/A #1 louiswooono.tistory.com    np.where로 쓰는 방법도 있다. 2024. 9. 16.
Offset이랑 Resize로 머리글 빼고 나머지 선택하기 r = Range("A1").Currentregion.rows.count - 1Range("A1").Currentregion.offset(1,0).Resize(r) VBA Range의 OFFSET과 RESIZE 속성 이용하기 (tistory.com) VBA Range의 OFFSET과 RESIZE 속성 이용하기이전 글에서 SpecialCells 속성에 대해 알아보았습니다. 이번 글에서는 Offset과 Resize 속성에 대해 알아보겠습니다. VBA Range의 SpecialCells 속성 이용하기 VBA Range의 SpecialCells 속성 이용하기 이전 글에서mr-johndoe.tistory.com 2024. 9. 13.