matplotlibはpythonできれいなグラフを描くための定番ライブラリです。 グラフのテンプレートを作成していた時に、軸の設定でハマったことがあったので備忘録を残します。 set_xlim(left, right)とset_xbound(lower, upper)の違い これらは軸の表示範囲を指定する関数です ...
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
In case you need to tweak the layout, you can generate the source code and simply copy-paste it in your project: import matplotlib as mpl import matplotlib.pyplot as plt fig = plt.figure(figsize=(12, ...
研究で測定したデータのベースラインをエクセルで引いていると手作業によるミスが生じるが、データが少し汚いので全自動でベースラインを引くと望ましくないベースラインが引かれてしまうので、手作業を支援するツールを作ろうと思った。 まずは ...