Python 初級 - 數據科學:pandas 時間 + 圖表教程|股票|數據分析|Data Science|教學|廣東話

kfsoft
kfsoft
3.7 هزار بار بازدید - 4 سال پیش - Patreon:
Patreon: Patreon: kfsoft
Doing data science with python:
1) Pandas Time API
2) Plot Stock charts
- Moving average, candlestick, etc.

Files: https://github.com/learn10kYear/learn...

00:00 PART 1 Intro - Time - 1) python datetime 2) numpy datetime64 3) pandas timestamp
04:00 Time API: python datetime (easy to use, but slow)
12:28 Time API: numpy datetime64 (fast, vectorized computation)
18:20 Time API: pandas timestamp (python datetime + numpy datetime64 - fast and easy to use)
22:18 Time API: timestamp + TimedeltaIndex
25:55 Time Index: 1) DatetimeIndex 2) PeriodIndex 3) TimedeltaIndex
27:24 Time Index: Create DatetimeIndex(1) - pd.DatetimeIndex()
29:10 Time Index: Create DatetimeIndex(2) - pd.to_datetime()
30:54 Time Index: Use DatetimeIndex as index of a series
32:05 Time Index: filtering time index rows
33:43 Time Index: Convert a DatetimeIndex to a periodInde - datetimeIndex.to_period('D')
35:45 Time Index: TimedeltaIndex conversion & creation: pd.TimedeltaIndex()
40:39 Time Index: Range functions 1) pd.date_range() 2) pd.period_range() 3) pd.timedelta_range()
42:00 Time Index: pd.date_range() - DatetimeIndex
43:56 Time Index: pd.period_range() - PeriodIndex
44:55 Time Index: pd.timedelta_range() - TimedeltaIndex
46:33 Time Index: Time index as series index
47:21 PART1 Summary: 3 forms of time in Pandas, and their time index
01:04:17 PART 1 conclusion
01:05:32 PART 2 Intro: Charts - 1)read stock data 2) moving average 3) bollinger bands 4) candlestick
01:06:23 Charts: install packages (pandas_datareader / seaborn / mplfinance)
01:06:43 Charts: data source (yahoo / quandl)
01:09:31 Charts: stock dataframe
01:13:36 Charts: resampling - groupby a time range & do aggregate functions
01:19:41 Charts: plt.subplots(row, col)
01:24:41 Charts: asfreq('X') - return a Dataframe
01:28:56 Charts: shift(int)
01:31:47 Charts: moving average, rolling(window=size).mean()
01:35:39 Charts: bbands - moving average +/- std*n
01:42:31 Charts: candlestick chart - mplfinance.plot()
01:44:59 Summary & conclusion

Python入門:第1課 - PyCharm + Data Types Python 入門:第1課 - PyCharm + Data Types ...
Python入門:第2課 - Python containers (1): List, Tuple Python 入門:第2課 - Python containers (1)...
Python入門:第3課 - Python containers (2): Dictionary & Set Python 入門:第3課 - Python containers (2)...
Python入門:第4課 - If-Else, Looping, Try-except Python 入門:第4課 - If-Else, Looping, Try...
Python入門:第5課 - Function + File Python 入門:第5課 - Function + File | 教學 ...
Python入門:第6課 - Class and Object Python 入門:第6課 - Class + Object | 教學 |...
Python入門:第7課 - URL, JSON, Sqlite Python 入門:第7課 - URL, JSON, Sqlite | 教...
Python入門:第8課 - 用Flask進行Web開發 Python 入門:第8課 - 用Flask進行Web開發|教學|廣東話 ...
Python入門:第9課 - Flask + DB ORM Python 入門:第9課 - Flask + Database ORM|...
Python入門:第10課 - Flask補充1 Python 入門:第10課 - Flask - blueprint / ...
Python入門:第11課 - Flask補充2 Python 入門:第11課 - Flask web - form / s...
Python入門:Apache 安裝Flask app - mod_wsgi Python 入門:Deploy Flask app to Apache ...
Python入門:第12課 - GUI (Tkinter) + PyInstaller 打包EXE Python 入門:第12課 - 1小時上手Tkinter GUI + P...1
Python入門:第13課 - More loops - Iterable Vs Iterator Python 入門:第13課 - Loops - Iterable Vs ...
Python入門:第14課 - More loops - Generator Python 入門:第14課 - Loops - Generator|教學...

Python初級:第15課 - Web Scraping 靜態網頁抓取 Python 初級:第15課 - Web Scraping 靜態網頁抓取 ...
Python初級:第16課 - Web Scraping 動態網頁抓取 Python 初級:第16課 - Web Scraping 動態網頁抓取 ...
Python初級:第17課 - Pygame貪食蛇遊戲 Python 初級:第17課 - Pygame貪食蛇遊戲|Snake ga...
Python初級:第18課 - if _name_ == '__main__' 入口點 Python 初級:第18課 - if __name__ == '__ma...
Python初級:第19課 - Type hints 類型提示 Python 初級:第19課 - Type Hints 類型提示|教學|廣...
Python初級:第20課 - Decorator 裝飾器 Python入門 - Decorator 裝飾器|function|教學|...
Python初級:第21課 - Multi-threading 多線程 Python 初級:Multi-threading 多線程|教學|廣東話|...
Python初級:第22課 - Multi-processing 多進程 Python 初級:Multi-processing 多進程|教學|廣東話...

Python初級:Django 入門 1 - Model + Admin Site Python 初級:Django 入門 1 - Model + Admin...
Python初級:Django 入門 2 - Template + View Python 初級:Django 入門 1 - Model + Admin...
Python初級:Django 入門 3 - 部署 Python 初級:Django項目部署 - Apache + mod_w...

Python初級:openpyxl - 讀寫 MS Excel 文件 Python 初級:openpyxl - Python 讀寫 MS Exc...
Python初級:python-docx - 讀寫 MS Word 文件 Python 初級:python-docx 讀寫 MS Word文件 |教...

Python入門 - 數據科學 - Jupyter Lab & Notebook 安裝+入門教程 Python 入門 - 數據科學:Jupyter notebook & J...
Python入門 - 數據科學 - Anaconda + PyCharm 安裝 Python 入門 - 數據科學:Anaconda + PyCharm 安...
Python初級 - 數據科學 - Numpy入門 Python 初級 - 數據科學:NumPy入門教程|數據分析|Data ...
Python初級 - 數據科學 - Pandas入門 Python 初級 - 數據科學:2小時 pandas 入門教程 - 初版...
Python初級 - 數據科學 - Pandas入門 (第二版 更新column部分)  Python 初級 - 數據科學:3小時 pandas 入門教程 - 第2...
Python初級 - 數據科學 - Pandas時間 + 圖表 Python 初級 - 數據科學:pandas 時間 + 圖表教程|股票|...
Python初級 - 數據科學 - Pandas類別 + 樣式 Python 初級 - 數據科學:pandas 類別 + 樣式|Categ...

Database初級:SQL入門 Database 初級:2.5小時 SQL入門|教學|廣東話
Database初級:JOIN連接 Database 初級:SQL JOIN連接|教學|廣東話
Database初級:MongoDB入門 Database 初級:2.5小時 MongoDB 入門|教學|廣東話|6...

Python初級 - 機器學習 - Scikit-learn 入門 Python 初級 - 機器學習:scikit-learn 入門|AI|人...
Python初級 - 機器學習 - Scikit-learn - Regression 回歸 Python 初級 - 機器學習:scikit-learn - regre...
Python初級 - 機器學習 - Scikit-learn - Classification 分類 Python 初級 - 機器學習:scikit-learn - class...
Python初級 - 機器學習 - Scikit-learn - Clustering 聚類+降維 Python 初級 - 機器學習:scikit-learn - clust...

Python入門 - 技巧篇 - Debug 偵錯 / 除錯 / 調試 Python 入門 - 技巧篇:Debug 偵錯|教學|廣東話
Python入門 - 工具篇 - PyCharm 10個必學功能 Python 入門 - 工具篇:PyCharm 10個必學功能 | 教學 ...

https://kfsoft.info
4 سال پیش در تاریخ 1399/07/09 منتشر شده است.
3,752 بـار بازدید شده
... بیشتر