プログラミング PyO3でPythonからRustを使う(1.1) 前回の続きというかやり直し ライブラリを作る cargo new --lib pyo3test Carto.toml に以下を追加 [lib] name = "libname" crate-type = &... 2021.10.07 プログラミング
Python PyO3でPythonからRustを使う PyO3を試した versionPython: 3.8.10Rust: 1.55.0 OS は Windows ライブラリを作る cargo new --lib addarray Carto.toml に ... 2021.10.06 Python
統計学 Pythonでサンプルサイズと検出力 ABテストで使うやつ from __future__ import annotations import math from typing import Tuple import pandas as pd from scipy.... 2021.04.14 統計学
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 WindowsでProphetを使う方法 Pythonで Prophet を使ってみたかったのですが、インストールが大変だったのでメモ。WindowsではおそらくC++コンパイラか何かが原因でインストールが難しい。そこで、Dockerを使うことにしました。 Dockerf... 2020.10.03 Python