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

scikit-learn Machine Learning K-Means Clustering 사이킷런 머신러닝 K-평균 군집화 In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns Data Collection¶ In [2]: file_url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/example_cluster.csv' df = pd.read_csv(file_url) In [3]: df.head() Out[3]: var_1 var_2 0 3.264413 6...

scikit-learn Machine Learning LightGBM 사이킷런 머신러닝 LightGBM In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns Data Collection¶ In [2]: # https://www.kaggle.com/datasets/kartik2112/fraud-detection file_url = 'https://media.githubusercontent.com/media/musthave-ML10/data_source/main/fraud.csv' df = pd.read_csv(file_url) df.head() Out[2]: tran..

scikit-learn Machine Learning RandomForest 사이킷런 머신러닝 랜덤포레스트 In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns 1. Data Collection¶ In [2]: # 'https://www.kaggle.com/datasets/nehalbirla/vehicle-dataset-from-cardekho' file_url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/' file_name = '..

scikit-learn Machine Learning DecisionTree 사이킷런 머신러닝 결정트리 Data Collection¶ In [1]: import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns In [2]: # https://www.kaggle.com/datasets/ayessa/salary-prediction-classification url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/salary.csv' df = pd.read_csv(url, skipin..

scikit-learn Machine Learning Naive Bayes Kor NLP 사이킷런 머신러닝 나이브베이즈 한글 자연어처리 In [1]: # import library import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns 1. 데이터 불러오기 (Data Collection)¶ In [2]: # https://github.com/e9t/nsmc/ file_url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/ratings.txt' df = pd.read_csv..

scikit-learn Machine Learning Naive Bayes Eng NLP 사이킷런 머신러닝 나이브베이즈 영어 자연어처리 In [1]: # import library import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns Data Collection¶ In [2]: file_url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/' file_name = 'spam.csv' df = pd.read_csv(file_url + file_name, in..

scikit-learn Machine Learning k-NN algorithm 사이킷런 머신러닝 k-NN 알고리즘 In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns Data Collection¶ In [2]: # https://archive.ics.uci.edu/ml/datasets/wine # https://www.kaggle.com/datasets/akhil0007/wine-data file_url = 'https://raw.githubusercontent.com/dev-EthanJ/scikit-learn_Machine_Learning/main/data/'..

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..