캐글(Kaggle) 타이타닉 생존자 예측하기 -1
데이터 다운로드 아래 링크에 들어가시면 데이터셋을 다운로드할 수 있습니다. Titanic: Machine Learning from Disaster Start here! Predict survival on the Titanic and get familiar with ML basics www.kaggle.com 데이터 분석 데이터를 확인해봅니다. 훈련 데이터는 테스트 데이터보다 Survived(생사) 컬럼이 하나 더 많습니다. 결측 데이터 확인 Bar 그래프를 그리는 함수를 작성하고 생사에 영향을 미치는 컬럼을 확인합니다. import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns sns.set() def bar_chart(feature..