일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pandas
- MacOS
- pandas 메소드
- numpy
- 순열
- 리스트
- 통계학
- 등차수열
- Folium
- 기계학습
- INSERT
- SQL
- python
- barh
- maplotlib
- 조합
- matplotlib
- 문제풀이
- Slicing
- 재귀함수
- pandas filter
- 스터디노트
- DataFrame
- plt
- 자료구조
- tree.fit
- 등비수열
- 머신러닝
- 파이썬
- Machine Learning
Archives
- Today
- Total
목록min max scaler (1)
코딩하는 타코야끼

1. 타이타닉 생존자 분석 - EDA 📍 컬럼의 의미 📍 생존 상황 import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline # 데이터 정의 titanic_url = "" titanic = pd.read_excel(titanic_url) titanic.head() # 시각화 f, ax = plt.subplots(1, 2 ,figsize=(16, 8)) titanic["survived"].value_counts().plot.pie(ax=ax[0], autopct="%1.1f%%", shadow=True, explode=[0, 0.05]) ax[0].set_title("Pie plot - survived") ax[0].set_ylabe..
zero-base 데이터 취업 스쿨/스터디 노트
2023. 10. 11. 15:24