20140817_14_HX400V_宜蘭國際童玩節_俄羅斯 by 儲蓄保險王 · 2014-09-01 20140817_14_HX400V_宜蘭國際童玩節_俄羅斯 http://youtu.be/NXfPtBXVUk4 相關文章Python: 如何用seaborn (sns) 套件繪製具有多個子圖的折線圖? sns.relplot(data=tips, x=’total_bill’, y=’tip’, hue=’sex’, col=’day’, row=’time’, facet_kws={‘margin_titles’: True}, height=3, aspect=1.2).set_axis_labels(‘Total Bill’, ‘Tip’)Python容器(list, tuple, set, dict)的CRUD(Create, Read, Update, Delete)Python: 資料格式如 List[dict],如何快速將SN加入每一個dict中,以利Excel輸出?如何解包dict? **dict ; 將List[dict]的資料轉為pandas.DataFrame 長什麼樣子?Python: 如何使用graphviz套件繪製流程圖? from graphviz import Digraph ; dot = Digraph() ; dot.attr(rankdir='TB', size='10,15') #"TB": Top to Bottom, 從上而下的佈局Python: 如何用tkinter做出Listbox列表選擇框 GUI? menu = tk.StringVar(root, value= tuple( cable.items() ) ) ; listbox = tk.Listbox (root, listvariable = menu)Python: 淺拷貝(shallow copy) vs 深拷貝(deep copy),什麼時候需要用深拷貝? import copy ; b = copy.deepcopy(a)Python 機器學習: 如何將if ~ else ~語法寫為一列,塞進lambda函數中, pandas.DataFrame 如何使用 .apply(func) 增加新的一欄? model = tensorflow.keras.models.Sequential() #均一化資料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 如何用pandas.Series.nsmallest() 找到n個與target差距最小的index?再從中找到距離idxmax最近的index?避免誤抓sidelobes的index? targetIdx = (serMean-target_value).abs().nsmallest(n).index.tolist() ;Series切片: .loc[標籤名1:標籤名2] (會含標籤名2) ; .iloc[位置1:位置2] (不含位置2)
0 Python: 如何用isin()函式切片出兩個 pandas.Series 重複的元素? ser_bool = 長的Series.isin (短的Series); numpy.bool_ ; WR75 WR42 WR28頻段為何? 2023-02-05
0 Python: Matplotlib 中如何將圖例放置在繪圖之外? plt.legend(bbox_to_anchor=(1.05, 1.0), loc=’upper left’) ; plt.tight_layout() ; 如何防止儲存的檔案圖例被裁切? plt.savefig(‘example.png’, dpi=300, format=’png’, bbox_extra_artists=(lg,), bbox_inches=’tight’) 2023-05-01
近期留言