Excel TQC考題202: 快樂小學學生名冊,自訂格式:0″公斤”;[紅色]”減”0″公斤”;[藍色]”完美身材” by 儲蓄保險王 · 2022-04-10 Excel TQC考題202: 快樂小學學生名冊 簡單的都省略 題目: 用CTRL + SHIFT + 方向鍵:下 選取I7~I62 CTRL + I 0″公斤”;[紅色]”減”0″公斤”;[藍色]”完美身材” 相關文章Python爬蟲: 如何確認Chrome瀏覽器版本? chrome://settings/help ; chrome://version/ 如何尋找對應的Chrome Driver? https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.jsonPython如何用 Thread 讓程式同時做多件事? threading與 非同步 有何差別? import threading ; t1 = threading.Thread( target= worker, args= ("員工A",))Python機器學習: 從特徵工程到數據擬合 PolynomialFeatures 與 numpy.polyfit 的全面比較與應用; from sklearn.preprocessing import PolynomialFeatures ; poly = PolynomialFeatures( degree=2, include_bias = True) ; X_poly = poly.fit_transform(X)Python:如何串接Gemini API?如何傳遞圖片給API?如何將回應的base64 str轉回圖片?如何看消耗的tokens?python Graphviz中控制子圖(子圖可以僅含一個node)垂直位置教學: rank='sink' ; rank='source' ; rank='same' ; 為子圖的屬性,在node中設定無效 ; 不可與g.attr(newrank='true') #子圖同高度 一起使用; with g.subgraph() as s: s.attr(rank='sink') # 設置子圖為sink ; s.node('Logo', 'Company Logo')Python如何串接Bard? 如何取得API Key? Exception: SNlM0e value not found. Double-check __Secure-1PSID value or pass it as token='xxxxx' 如何處理這個錯誤?如何清除cookies?Python: 如何計算全文件詞頻(term frequency,簡稱TF)?如何使用jieba做中文斷詞? lis_jieba = jieba.lcut(strr)Python: pandas.DataFrame (df) 的取值: df [單一字串] 或df [list_of_strings] 選取一個或多個columns; df [切片] 或 df [bool_Series] 選取多個rows #bool_Series長度同rows, index也需要同df.index ,可以使用.equals() 確認: df.index.equals(mask.index)Python: 使用 flat_list.extend( List[pandas.Series] ) 實現 pandas.DataFrame 列擴展教學
0 Python: pandas.DataFrame串接; pandas.concat( [df1,df2] , axis=1, ignore_index=True) ; .append() 產生一個新的DataFrame; 插入欄 .insert() 改變原DataFrame 2022-11-29
0 Python讀取csv逗點分隔檔: pandas.read_csv(r”路徑\檔名.副檔名”) vs csv.reader(io.TextIOWrapper) 有何差別? 為何出現ParserError? #Parser:解析器,如何讀取Excel檔(xlsx)?pandas.read_excel() 2022-11-09
0 Python: 如何使用matplotlib繪製盒鬚圖?df.boxplot(column=’value’, by=’fixture’, grid=False, showmeans=True, showfliers=True, ax=ax) ; 如何獲取pandas.DataFrame多層索引MultiIndex中的第二層內容? df.columns.get_level_values(1).unique() 2025-01-15
近期留言