回答編集履歴
1
動作サンプル追加
test
CHANGED
@@ -7,3 +7,45 @@
|
|
7
7
|
```
|
8
8
|
|
9
9
|
でどうでしょうか
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
一応動作サンプル書いてみた
|
16
|
+
|
17
|
+
```Python
|
18
|
+
|
19
|
+
import pandas as pd
|
20
|
+
|
21
|
+
import numpy as np
|
22
|
+
|
23
|
+
import matplotlib.pyplot as plt
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
# 適当なデータを作成
|
28
|
+
|
29
|
+
N = 10
|
30
|
+
|
31
|
+
x = np.asarray(range(N))
|
32
|
+
|
33
|
+
df1 = pd.DataFrame(dict(x=x, y1=np.sin(x*np.pi/10)+1)).set_index('x')
|
34
|
+
|
35
|
+
df2 = pd.DataFrame(dict(x=x, y2=np.cos(x*np.pi/10)+1)).set_index('x')
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
# 回答に記述した方法
|
40
|
+
|
41
|
+
pd.concat([df1,df2], axis=1).plot.bar()
|
42
|
+
|
43
|
+
plt.savefig('out.png')
|
44
|
+
|
45
|
+
plt.show()
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
![イメージ説明](17baa7b877a5111d3dc36f95e75d2292.png)
|