字元編碼,ASCII、Unicode、UTF-8

關於編碼,相信大家很常聽到 ASCII、Unicode、UTF-8 這幾個名詞,這篇要根據我的理解來介紹這三個名詞。若有錯歡迎指正:)
2022/03/15 上完 Harvard CS50 的 Lecture 0 後做了一些新增與修改。

0 Comments

[Python]pyinstaller出現錯誤訊息AttributeError:type object pandas._TSObject has no attribute _reduce_cython_

在打包含有 pandas 套件的程式碼時產生了以下的錯誤訊息, pyinstaller pandas.png

0 Comments

[Python]讀取與寫入xlsx檔案

這裡要介紹使用 pandas 套件讀取與寫入 xlsx 檔案。

0 Comments

[Python]全形與半形轉換

因為全形字元的 unicode 編碼從 65281~65374,而半形字元的 unicode 編碼從 33~126,也就是同樣的字在全形與半形數字會差 65248。

0 Comments

[Machine Learning]Linear Regression

Linear Regression 屬於 Supervised Learning(監督式學習),用來預測連續型(continuous)的變數。

0 Comments

[Machine Learning]Regression splines

splines scatter plot.png

0 Comments

[Machine Learning]Principal Component Analysis(PCA)

PCA.png

0 Comments

[Machine Learning]Boosting and Adaboost

Boosting

0 Comments