このnoteは、31歳未経験からエンジニアを目指して勉強していく記録を綴っているものです。現在はAdTechでカスタマーサクセスを担当しつつ、色んなチャンスに恵まれ、CS業務や子育てと並行しながらチャレンジしています。 これからプログラミングを始める ...
Pythonで株価をチャートに描くために、いくつかのライブラリがありますが、ここではMatplotlibを使います。 私は時と場合に応じてライブラリを使い分けています。 Matplotlibはチャートをカスタマイズしたい時によく使います。 次のようにplotChart関数を ...
Matplotlib is a comprehensive plotting library for Python that allows you to create static, animated, and interactive visualizations. It provides an object-oriented API for embedding plots into ...
I get stuck with a weird problem related to matplotlib package. Next code works fine: import matplotlib.pyplot as plt X = range(1,7) Y = [6, -1, 2.5, 9, 5, -2] plt ...