Python DataFrameの手動ソートのトリック df.col = df.col.astype("category") df.col.cat.set_categories(sorted_list, inplace=True) df = df.sort_values(["c... 2021.06.18 Python
Python matplotlibの日本語化 import matplotlib from matplotlib import font_manager font_manager.fontManager.addfont("path/to/ipaexg.ttf") matplotli... 2021.03.29 Python
Python pythonでExcel作成 # 桁区切りのカンマありの整数 format_int = {'num_format': '#,##0', 'align': 'right'} # 小数点以下2桁 format_flt = {'num_format': '#,##0.00'... 2021.02.27 Python
Python Pythonのdictの存在しないkey対策 d = {'k0': 'v0', 'k1': 'v1',} # 以下2つは同じで、'v0' を返す d['k0'] d.get('k0') # 以下はエラー d['k2'] # getを使うと、keyが存在しない場... 2021.02.16 Python
Python 加算器 Python-likeにかく 半加算器:入力A, B -> 和S, 桁上がりC def HA(A, B): S = XOR(A, B) C = AND(A, B) return S, C 全... 2021.02.02 Python
Python DataFrameとCOALESCE # df1(id, col) # df2(id, col)やりたきこと:df1をdf2で更新 -- SQLSELECTCOALESCE(b.id, a.id) AS id, COALESCE(b.col, a.col) AS col... 2020.10.29 Python
Python WindowsでProphetを使う方法 Pythonで Prophet を使ってみたかったのですが、インストールが大変だったのでメモ。WindowsではおそらくC++コンパイラか何かが原因でインストールが難しい。そこで、Dockerを使うことにしました。 Dockerf... 2020.10.03 Python