본문 바로가기

분류 전체보기259

데이터 인코딩 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.
Find lookat 풀기 Cells.Find(What:="1", lookat:=xlPart).Activate 2024. 9. 4.
Count([Orders]), { Count([Orders]) }, { FIXED [Product Category] : COUNT([Orders]) } 차이 { Count([Orders]) } 는 { Fixed : Count([Orders]) }  와 같다. Fixed 뒤에 보통 차원을 쓰는데 비워놓는다는건 전체테이블을 범위로 쓴다는 것 2024. 8. 27.
테이블 계산 테이블 계산은 집계되지 않은 필드로는 실행 안됨. 무조건 집계된 애들로 해야 됨. Visualization ( 뷰 ) 에서 필터링된 차원은 테이블 계산에서 안보임 2024. 8. 25.