일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 머신러닝
- plt
- numpy
- pandas
- pandas filter
- Folium
- 파이썬
- SQL
- MacOS
- 통계학
- maplotlib
- tree.fit
- Slicing
- 등차수열
- INSERT
- python
- Machine Learning
- 리스트
- pandas 메소드
- 재귀함수
- 순열
- 문제풀이
- 조합
- 스터디노트
- 자료구조
- 등비수열
- matplotlib
- barh
- DataFrame
- 기계학습
Archives
- Today
- Total
목록machinlearning (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