Python statsmodelsの回帰分析で切片interceptを追加する方法 statsmodelで回帰分析を行った時のこと import statsmodels.api as sm model = sm.OLS(Y, X) results = model.fit() print(results.summary())... 2019.06.26 Python
Python pandasのquery()で複数条件を指定して条件抽出する方法 pandasの条件抽出ではdf.loc()を使っているサンプルが多い気がするが、読んでてややこしい それに比べて、df.query()を使うと可読性が高い 後で見返したときでも分かりやすいので保守しやすくなるというメリットがある 乱数のデー... 2019.06.14 Python
Python Pythonのif文でRemove redundant parentheses Pythonでif文を書いていた時のこと if (a == b): とすると Remove redundant parentheses 直訳すると「冗長な括弧を取れ」ということになり、if分は()が不要だとわかる if a == b: これ... 2019.05.13 Python
Python COCO APIのインストールでerror: no such file or directory: ‘pycocotools/_mask.c’ Tensorflow Object Detection APIを導入するにあたり、COCO API installationが必要 git clone cd cocoapi/PythonAPI make が、エラー発生。 clang: er... 2019.04.24 Python
Python 裏で動いているJupyter Notebookのサーバーを落とすコマンド PyCharmでJupyter Notebookを動かしていたら急にフリーズして強制終了する羽目になった。 裏でJupyter Notebookのサーバーが動いているので、ブラウザからアクセスするとToken authentication ... 2019.04.20 Python
Python Jupyter Notebook でエラー ‘prompt-toolkit<2.0.0,>=1.0.15′ distribution was not found and is required by ipython Jupyter Notebook を実行してみるとエラー発生 resources.DistributionNotFound: The 'prompt-toolkit<2.0.0,>=1.0.15' distribution was not ... 2019.04.19 Python
Python Pythonで実行時のwarningが出ないようにする warningが表示されても、改善策を教えてくれるわけでもなく、エラー解決に役立たないことが多い。 実行時の煩わしいwarningを非表示にする。 import warnings warnings.filterwarnings('ignor... 2019.04.15 2020.06.15 Python
Python 複数の変数に値を代入しようとして ‘int’ object is not iterable が出る 複数の変数に同じ値を入れたくてこんなコードを書いた。 a, b = 0 実行すると怒られる TypeError: 'int' object is not iterable 正しくは a = b = 0 a, b = 0, 0 3個以上の変数... 2019.04.04 2019.04.15 Python