質問編集履歴

1

サンプルの追加

2020/07/08 10:48

投稿

aochan01
aochan01

スコア17

test CHANGED
File without changes
test CHANGED
@@ -11,3 +11,61 @@
11
11
  元のデータを時間単位に変換して描画する手法も考えたのですが,timedelta型の勝手が分からず困っています.
12
12
 
13
13
  手法にこだわりはないので,前者でも後者でもいいのですが,分かりやすい簡便な手法で実現できる方法を教えて下さい.
14
+
15
+
16
+
17
+ ```python
18
+
19
+ for ***
20
+
21
+ time.append(abs(
22
+
23
+ datetime.datetime(2005,int(line[116:118]),int(line[118:120]),int(line[120:122]),int(line[122:124]))
24
+
25
+ -datetime.datetime(2005,int(line[108:110]),int(line[110:112]),int(line[112:114]),int(line[114:116]))))
26
+
27
+
28
+
29
+ plt.figure()
30
+
31
+ plt.hist(time)
32
+
33
+ plt.show()
34
+
35
+ ```
36
+
37
+ ```サンプルデータ
38
+
39
+ 0
40
+
41
+ timedelta
42
+
43
+ 1
44
+
45
+ 1 day, 16:25:00
46
+
47
+ 1
48
+
49
+ timedelta
50
+
51
+ 1
52
+
53
+ 3 days, 17:10:00
54
+
55
+ 2
56
+
57
+ timedelta
58
+
59
+ 1
60
+
61
+ 2 days, 18:00:00
62
+
63
+ 3
64
+
65
+ timedelta
66
+
67
+ 1
68
+
69
+ 1 day, 9:15:00
70
+
71
+ ```