🏠
令和7年3月30日 (日)
⇒#1148@グラフ;

📈 キャパシターB-100-φ

1148_キャパシターB-100-φ
👨‍🏫 0
import numpy as np
import matplotlib.pyplot as plt

#fig, ax = plt.subplots(figsize=(2.9, 2.1)) 
fig, ax = plt.subplots()

#----------------
#_📈_1148_キャパシターB-100-φ
xy_1148 = [(1.7,-45) \
, (2.7,-37) \
, (3.7,-33) \
, (4.7,-30) \
, (5.7,-26) \
, (6.7,-24) \
, (7.7,-22) \
, (8.7,-21) \
, (9.7,-19) \
, (10.7,-17) \
, (11.7,-15) \
, (12.7,-15) \
, (13.7,-15) \
, (14.7,-14) \
, (15.7,-14) \
, (19.7,-13) \
, (20.7,-13) \
, (30.17,-13) \
, (40.17,-13) \
, (50.17,-13) \
, (60.17,-14) \
, (70.17,-16) \
, (83.17,-17) \
, (93.17,-18) \
, (131.7,-21) \
, (231.7,-30) \
, (331.7,-36) \
, (431.7,-42) \
, (531.7,-47) \
, (631.7,-52) \
, (731.7,-54) \
, (831.7,-58) \
, (931.7,-61) \
, (1031,-63) \
, (2357,-73) \
, (3357,-76) \
, (4357,-78) \
, (27370,-81) \
, (37370,-80) \
, (43570,-80) \
, (57370,-79) \
, (67370,-79) \
, (77370,-78) \
, (87990,-78) \
, (99990,-77) \
]
z_1148 = [list(t) for t in zip(*xy_1148)]; x_1148 = z_1148[0]; y_1148 = z_1148[1]

ax.scatter(x_1148, y_1148)
ax.plot(x_1148, y_1148)
ax.annotate('ID=1148' \
, xy=(np.mean(x_1148),np.mean(y_1148)) \
, xytext=(np.mean(x_1148)+ np.std(y_1148), np.mean(y_1148) + np.std(y_1148)) \
, arrowprops=dict(arrowstyle="->"))
#----------------

plt.show()
  1 python コード

A4 (210 × 297mm)あるいは少し大きめのレターサイズ(215.9 × 279.4ミリ)が一般的です。 2 カラムとすると 3.34645669291339インチ程度。 アスペクトを 4:3にすれば、2.9インチ×2.1インチぐらいの図が論文投稿の図として適切です。


サーバーサイドスクリプト

  2 キャパシターB-100-φ

サーバーサイドでラスタライズ(bmp,jpg,png)しているので、レスポンシブな表示が可能です。 サーバーサイドでダイナミックに生成している画像なので、ダウンロードだけでなく、リンクもできます。


クライアントサイドスクリプト

  3 canvas キャパシターB-100-φ

クライアントサイドでラスタライズ(bmp,jpg,png)しているので、レスポンシブな表示が可能です。 クライアントサイドでダイナミックに生成している画像なので、ダウンロードはできますが、リンクはできません。


  4 google chart APIを使った描画

  5 キャパシターB-100-φ

xmin0.1
xmax100000
ymin-180
ymax180
1.7 -45 2.7 -37 3.7 -33 4.7 -30 5.7 -26 6.7 -24 7.7 -22 8.7 -21 9.7 -19 10.7 -17 11.7 -15 12.7 -15 13.7 -15 14.7 -14 15.7 -14 19.7 -13 20.7 -13 30.17 -13 40.17 -13 50.17 -13 60.17 -14 70.17 -16 83.17 -17 93.17 -18 131.7 -21 231.7 -30 331.7 -36 431.7 -42 531.7 -47 631.7 -52 731.7 -54 831.7 -58 931.7 -61 1031 -63 2357 -73 3357 -76 4357 -78 27370 -81 37370 -80 43570 -80 57370 -79 67370 -79 77370 -78 87990 -78 99990 -77

,[1.7 -45 ],[2.7 -37 ],[3.7 -33 ],[4.7 -30 ],[5.7 -26 ],[6.7 -24 ],[7.7 -22 ],[8.7 -21 ],[9.7 -19 ],[10.7 -17 ],[11.7 -15 ],[12.7 -15 ],[13.7 -15 ],[14.7 -14 ],[15.7 -14 ],[19.7 -13 ],[20.7 -13 ],[30.17 -13 ],[40.17 -13 ],[50.17 -13 ],[60.17 -14 ],[70.17 -16 ],[83.17 -17 ],[93.17 -18 ],[131.7 -21 ],[231.7 -30 ],[331.7 -36 ],[431.7 -42 ],[531.7 -47 ],[631.7 -52 ],[731.7 -54 ],[831.7 -58 ],[931.7 -61 ],[1031 -63 ],[2357 -73 ],[3357 -76 ],[4357 -78 ],[27370 -81 ],[37370 -80 ],[43570 -80 ],[57370 -79 ],[67370 -79 ],[77370 -78 ],[87990 -78 ],[99990 -77 ],[]

図形と関数

  1 図形と関数
名称 グラフ 説明
指数関数
python +matplotlib
import numpy as np
import math
import matplotlib.pyplot as plt

xy = [(p, math.exp(p)) for p in \
      np.arange(start = - 2, stop = 2, step = 0.1)]
z = [list(t) for t in zip(*xy)]; x = z[0]; y = z[1]

fig, ax = plt.subplots()
ax.plot(x, y)

plt.show()
逆ネルンスト 電池の充放電曲線で現れます。
確率曲線
正規分布関数 確率統計で多用されます。 品質管理 でも大切です。

<!-- 図図図図図 図図図図図 -->
<figure>
<img src="https://a.yamagata-u.ac.jp/amenity/Laboratory/xyGraphImage.aspx?id=1148" />
<figcaption>
<a href="https://edu.yz.yamagata-u.ac.jp/developer/Asp/Youzan/Laboratory/Plot/Plot_Index.asp">Fig</a> <a href="https://edu.yz.yamagata-u.ac.jp/developer/Asp/Youzan/Laboratory/Plot/@Plot.asp?nxyGraphID=1148"> キャパシターB-100-φ </a>
<div> </div>
</figcaption>
</figure>
<!-- 図図図図図 図図図図図 -->

動画、音声及び写真を含む図表等を転載する場合には転載許諾書による同意があった方が無難です。 動画、音声及び写真を含む図表等の転載許諾書


QRコード
https://edu.yz.yamagata-u.ac.jp/developer/Asp/Youzan/Laboratory/Plot/@Plot.asp?nxyGraphID=1148
名称: 教育用公開ウェブサービス
URL: 🔗 https://edu.yz.yamagata-u.ac.jp/
管理運用 山形大学 学術情報基盤センター

🎄🎂🌃🕯🎉
名称: サイバーキャンパス「鷹山」
URL: 🔗 http://amenity.yz.yamagata-u.ac.jp/
管理運用 山形大学 データベースアメニティ研究会
〒992-8510 山形県米沢市城南4丁目3-16

Copyright ©1996- 2025 Databese Amenity Laboratory of Virtual Research Institute,  Yamagata University All Rights Reserved.