오래된 print(‘제일 나이 많은 탑승객 : {:.1f} years’.format(df_train(‘Age’).max())) print(‘제일 어린 탑승객 : {:.1f} years’.format(df_train(‘Age’).min())) print(‘탑승객 평균 나이 : {:.1f} years’.format(df_train(‘Age’).mean())) 최고령 승객: 80.0세 최연소 승객: 0.4세 승객 평균 연령: 29.7세 찾으려면 Kernel Density Estimation 검색 fig, ax = plt.subplots(1, 1, figsize=(9,5)) sns.kdeplot(df_train(df_train(‘Survived’)==1)(‘Age’),ax=ax) sns.kdeplot(df_train(df_train(‘Survived’)==0)(‘Age’),ax=ax) plt.legend((‘Survived==1′,’Survived==0’)) plt.show() ↑ ↑kdeplot↑은 히스토그램의 부드러운 형태의 분포 곡선을 아래에 표시하는 방법임을 … Read more