20140817_15_HX400V_宜蘭國際童玩節_俄羅斯 by 儲蓄保險王 · 2014-09-01 20140817_15_HX400V_宜蘭國際童玩節_俄羅斯 http://youtu.be/75upmO6xAyM 相關文章Python: matplotlib如何繪製出副刻度?minor_locator = ticker.MultipleLocator(0.5) ; ax.xaxis.set_minor_locator(minor_locator)Python: 使用pandas做樞紐分析有那些方法?pivot_table() = groupby() + pivot() ; crosstab()Python如何讀取json檔?dic = json.loads( json_str ) ; json的保留字:null, true, false(區分大小寫,全小寫), null(非"null",非Null)自動轉譯為None, true(非"true",非True)自動轉譯為True(bool), false(非"false",非False)自動轉譯為False(bool);colab如何掛載雲端硬碟? from google.colab import drive ; json檔的decode與encode? json.load() ; json.loads() ; json.dump() ; json.dumps() #s代表string的意思,有s的指令,參數需使用str typePython如何做excel的樞紐分析? DataFrame .pivot_table (values=None, index=None, columns=None, aggfunc='mean') ; df.groupby(['A', 'B', 'C'], sort=False)['D'].sum().unstack('C')Python: list.index(元素) 搜尋元素位於list中的那一個indexPython: 淺拷貝(Shallow Copy)和深拷貝(Deep Copy); list切片有淺拷貝的效果 ; pandas.Series.copy(deep=True) 可對Series對向執行深拷貝Python: any(list) 判斷list中是否有True ; all(list) 判斷list中是否全為True ; any(pandas.Series)相當於any(pandas.Series.values) ; i in pandas.Series 卻相當於於i in pandas.Series.indexPython: 如何去掉list中的重複值並維持順序?dict.fromkeys()如何用tkinter製作Python的GUI(圖形使用者介面)? from tkinter import Tk, Button, filedialog ; 物件導向避免使用全域變數 ; pandas.read_csv(fpath, skip_blank_lines = True) 可以濾掉空列,Tab , 不定數空白
0 Python: matplotlib繪圖, ax.plot (pandas.Series, pandas.DataFrame) 一次畫出多條折線圖; fig, ax = plt.subplots() #一次創建fig, ax兩個物件 ; fig = plt.figure() ; ax = fig.add_subplot(1, 1, 1) #fig, ax 分兩次建立 ; ax = df.plot() 2023-04-27
近期留言