iT邦幫忙

鐵人檔案

2021 iThome 鐵人賽
回列表
AI & Data

使用python學習Machine Learning 系列

python是一個好入手的程式語言,運算能力強大並且有很多ML相關的套件可以使用
之前在kaggle這個網站有學習一些python在ML上的操作,剛好這次可以利用30天的鐵人賽來複習並且翻譯之前的筆記,希望可以幫助到

參賽天數 26 天 | 共 29 篇文章 | 4 人訂閱 訂閱系列文 RSS系列文 團隊人工逗點智慧
DAY 11

Day 11 [Python ML、特徵工程] 特徵選擇

Introduction 再經過特徵編碼(feature encodings)和特徵產生(feature generation)後,我們會發現特徵太多了,可能會...

2021-09-24 ‧ 由 guancioul 分享
DAY 12

Day 12 [Python ML、特徵工程] 特徵工程整理

Categorical Encoding Encoding Describe One hot encoding 根據columns中的狀態,例如S...

2021-09-25 ‧ 由 guancioul 分享
DAY 13

Day 13 [Python ML、Pandas] 創建、讀取和寫入

Introduction 在這個課程裡,會學到最熱門的資料分析套件,pandas Getting Start import 套件 import pandas a...

2021-09-26 ‧ 由 guancioul 分享
DAY 14

Day 14 [Python ML、Pandas] 引索、選擇和給值

Introduction 為了讓資料更好的處理,這邊要學到如何切割資料 import pandas as pd reviews = pd.read_csv(&q...

2021-09-27 ‧ 由 guancioul 分享
DAY 15

Day 15 [Python ML、Pandas] 統整資料和Maps

import pandas as pd pd.set_option('max_rows', 5) import numpy as np reviews = pd...

2021-09-28 ‧ 由 guancioul 分享
DAY 16

Day 16 [Python ML、Pandas] 組成群組合排序

import pandas as pd reviews = pd.read_csv("./winemag-data-130k-v2.csv"...

2021-09-29 ‧ 由 guancioul 分享
DAY 17

Day 17 [Python ML、Pandas] 資料類型和遺失值

import pandas as pd reviews = pd.read_csv("./winemag-data-130k-v2.csv"...

2021-09-30 ‧ 由 guancioul 分享
DAY 18

Day 18 [Python ML、Pandas] 重新命名和整合

import pandas as pd reviews = pd.read_csv("./winemag-data-130k-v2.csv"...

2021-10-01 ‧ 由 guancioul 分享
DAY 19

Day 19 [Python ML、資料視覺化] Seaborn介紹

import pandas as pd import matplotlib.pyplot as plt import seaborn as sns 讀取資料...

2021-10-02 ‧ 由 guancioul 分享
DAY 20

Day 20 [Python ML、資料視覺化] 折線圖

設定jupyter notebook import pandas as pd pd.plotting.register_matplotlib_converter...

2021-10-03 ‧ 由 guancioul 分享