241112미니 프로젝트 4차 day2In [ ]:# 8. bar차트 그리기df['SeniorCitizen'].value_counts().plot(kinde = 'bar')In [ ]:# 15. 딥러닝 모델 (이중분류)from tensorflow.keras.models import Sequential, load_modelfrom tensorflow.keras.layers import Input, Dense, Activation, Dropout, BatchNormalizationfrom tensorflow.keras.callbacks import EarlyStopping, ModelCheckpointfrom tensorflow.keras.utils import to_categoricalnfeatures =..