일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 배열
- dataframe
- K평균군집화
- scikit-learn
- 사이킷런
- 판다스
- 머신러닝
- 나이브베이즈
- python
- NumPy
- 타이타닉 데이터
- KMeans Clustering
- ML
- pandas
- Python crawler
- 파이썬 크롤러
- 파이썬 제어문
- 파이썬
- 순회 크롤러
- control statement
- Machine Learning
- sklearn
- 제어문
- 넘파이
- Naive Bayes
- python control statement
- 파이썬 크롤링
- Data pre-processing
- Titanic data set
- 파이썬 객체 지향 프로그래밍
- Today
- Total
목록CS & DS/scikit-learn Machine Learning (10)
Try to 개발자 EthanJ의 성장 로그

scikit-learn Machine Learning Logistic Regression: Predict Titanic Survived 사이킷런 머신러닝 로지스틱 회귀: 타이타닉 생존자 예측 In [1]: import pandas as pd # DataFrame float값을 소수점 두 번째 자리 까지만 표시 pd.options.display.float_format = '{:.2f}'.format 1. Data Collection¶ In [2]: # Kaggle # https://www.kaggle.com/competitions/titanic file_url = "https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learn..

scikit-learn Machine Learning Linear Regression 사이킷런 머신러닝 회귀분석 Machine Learning Process 데이터 수집: Data Collection 데이터 전처리: Data pre-processing 모델 학습: Training Model 모델 평가:Evaluating Model 모델 배포: Model Deployment In [1]: import pandas as pd 1. Data 수집¶ In [2]: url = f'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/insurance.csv' df = pd.read_csv(url) df..