バイオリンプロット
https://gyazo.com/4e0f21dca9ac2ae540aebedb9a58edf1
code:py
import matplotlib.pyplot as plt
import seaborn as sns
import numpy as np
# サンプルデータの生成
np.random.seed(10)
data1 = np.random.normal(0, 1, 100)
data2 = np.random.normal(5, 2, 100)
data3 = np.random.normal(10, 1.5, 100)
# データをまとめる
# バイオリンプロットの描画
plt.figure(figsize=(8, 6))
sns.violinplot(data=data)
plt.title('Violin Plot Example')
plt.xlabel('Category')
plt.ylabel('Values')
plt.show()