回答編集履歴
2
Update
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
まとめて表示すると
|
1
|
+
まとめて表示すると以下の様になります。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -6,12 +6,34 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
**補遺**
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
Pandas を使う場合。
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
+
```python
|
18
|
+
|
19
|
+
import pandas as pd
|
20
|
+
|
21
|
+
import matplotlib.pyplot as plt
|
22
|
+
|
23
|
+
|
24
|
+
|
17
|
-
|
25
|
+
fn = 'test.csv'
|
26
|
+
|
27
|
+
df = pd.read_csv(fn, header=None)
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
df.set_index(0).plot()
|
32
|
+
|
33
|
+
plt.legend(loc='upper right')
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
plt.show()
|
38
|
+
|
39
|
+
```
|
1
Update
test
CHANGED
@@ -14,4 +14,4 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
表示結果
|
17
|
+
質問で提示されている表示結果と違っていますね。。。
|