정리하게 된 계기 from sklearn.cluster import KMeans # r,g,b 단위로 한줄로 reshape X = image.reshape(-1,3) # 비슷한 색상(군집) 8개로 모음 kmeans = KMeans(n_clusters=8,random_state=13).fit(X) # 센터값만 저장 segmented_img = kmeans.cluster_centers_[kmeans.labels_] # 센터 값을 이미지로 바꿔서 봄 segmented_img = segmented_img.reshape(image.shape) 답변 스터디 팀원 분께서 관련한 링크를 찾아 보내주셨다. 링크 : https://bytemeta.vip/repo/ageron/handson-ml2/issues/489 [QU..
groupby df_train[['Pclass', 'Survived']].groupby(['Pclass'], as_index=True).count() df_train[['Pclass','Survived']].groupby(['Pclass']) 를 하면 groupby 객체가 하나 만들어집니다. groupby는 수많은 메소드를 가지고 있는데 가령, sum ( 그룹바이 별로 합친거 ) count( 그룹바이 별 갯수 ) mean( 그룹바이 별 평균 ), 자료가 바이너리 일 때는 결국 % 가 되겠다. as_index는 앞에 인덱스를 Pclass로 둘지 (True) 아니면 그냥 별도로 하나 만들지 (False) 입니다. as_index = True를 해야 그림을 그릴 때 편하겠다. crosstab pd.crosst..