[解決!Python]Excelワークシートでグラフのスタイルを設定するには(OpenPyXL)

グラフのstyle属性 OpenPyXLが提供するグラフ関連のクラス(AreaChartクラス、BarChartクラスなど)のインスタンスはstyle属性を持つ。この属性に1~48の整数を設定することで、グラフのビジュアルを設定できる。これを一覧したのが冒頭の画像だ。 上の画像は、BarChartクラス(棒グラフ)を例としているが、例えば折れ…

[確率思考の戦略論] 1.確率理論の導入とプレファレンスの数学的説明 – ほぼ無職のエンジニアのブログ

import numpy as np import scipy from scipy.stats import binom %matplotlib inline %config InlineBackend.figure_format = ‘svg’ import matplotlib import matplotlib.pyplot as plt import seaborn as sns print("numpy version :", np.__version__) print("matplotlib version :", matplotlib.__version__) print…

Raspberry Piを使って往年のMacのようなデスクトップを再現した「SystemSix」|fabcross

レトロなClassic Mac OS風インターフェースを再現したガジェット「SystemSix」がRaspberry Pi公式ブログで紹介された。 SystemSixは、天気予報や月齢、カレンダーに登録した予定を電子ペーパーディスプレイで表示する卓上カレンダーだ。開発者のJohn Calhoun氏が初めて入手したApple製品はMacintosh Plusで、SystemSixの…

[解決!Python]Excelワークシートに株価チャートを作成するには(OpenPyXL)

[解決!Python]Excelワークシートに株価チャートを作成するには(OpenPyXL):解決!Python OpenPyXLが提供するStockChartクラスとBarChartクラスを使って、各種の株価チャート(ローソク足など、と棒グラフの組み合わせ)を作成する方法を紹介する。 from openpyxl import Workbook wb = Workbook() ws = wb.active v…

【初心者必見】Pythonインストールはどれを選べばいい?(Windows)

Pythonをインストールする場合、いくつかの方法が存在します。 この記事では、これからPythonを始める人向けに、それぞれのインストール方法について、特徴を交えて解説したいと思います。 これからPythonをインスト […]

GitHub – Textualize/textual: Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.

Textual Textual is a TUI (Text User Interface) framework for Python inspired by modern web development. Currently a Work in Progress. ⚠ NOTE: We (Textualize.io) are hard at work on the css branch. We will maintain the 0.1.0 branch for the near future but may not be able to accept API changes. If …