20140817_18_HX400V_宜蘭國際童玩節_俄羅斯 by 儲蓄保險王 · 2014-09-02 20140817_18_HX400V_宜蘭國際童玩節_俄羅斯 http://youtu.be/CjhPQflIuXY 相關文章Python 入門教學:用 Path.stat() 與 os.stat() 讀懂檔案資訊; from pathlib import Path ; type(p).__name__ #'WindowsPath'; p.stat().st_size == os.stat(p).st_size == os.path.getsize(p)Python 正規表示式進階:一次搞懂「零寬斷言」四大象形心法 (?=...) 正向前瞻 (Positive Lookahead) ; (?!...) 負向前瞻 (Negative Lookahead) ; (?<=...) 正向回顧 (Positive Lookbehind) ; (?<!...) 負向回顧 (Negative Lookbehind) ; re.sub() ; re.split()Python 字串匹配教學:捨棄整體初篩,改用字根比對判斷 Class Name ; tail_pattern = re.compile(r'(ProcessStep(?:_\d+)?|Process|Step(?:_\d+)?)$') ; difflib.SequenceMatcher(None, a.lower(), b.lower()).ratio()Python: 三個不同長度 pandas.DataFrame 的資料如何繪製在同一張散佈圖?Python機器學習: train_test_split() 切割資料為訓練資料跟測試資料; 二元分類 ; 邏輯迴歸 (Logistic Regression); from sklearn.model_selection import train_test_split ; lmLogR= linear_model.LogisticRegression(solver=”sag”, max_iter=10000)Python: 如何使用pandas.to_numeric ( df['numbers'], errors='coerce') 將非數值型資料轉為NaN? df['numbers'].describe() 簡述統計資料Python繪圖 import matplotlib.pyplot as plt ; plt.annotate(annot_min,(yMinIdx,minY)) ; ax.annotate(text,xy,...) #註釋 ; 通用屬性 ; linestyle ;圖例 legend ; set_title()、set_xlabel()、set_ylabel() ; 網格 ax.grid(visible=None, axis='both', ...) ; ax.set_xticks() ; ax.set_yticks()「Python 的兩條路」:一次搞懂 sys.path (找 .py) 與 os.environ['PATH'] (找 .exe) 的愛恨情仇Python: pandas.DataFrame 如何找出重複值並計算重複次數? counts = df[duplicates] .groupby(['name']) .size() .reset_index(name='count')
近期留言