質問編集履歴
1
プログラムを一部修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,9 +44,9 @@
|
|
44
44
|
|
45
45
|
max=df['temperature'].max()
|
46
46
|
|
47
|
-
start=df.iloc[0:1,
|
47
|
+
start=df.iloc[0:1,1:5]
|
48
48
|
|
49
|
-
end=df.iloc[49:50,
|
49
|
+
end=df.iloc[49:50,1:5]
|
50
50
|
|
51
51
|
print (start)
|
52
52
|
|
@@ -58,7 +58,7 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
-
row[
|
61
|
+
row[4]=df.iloc[0:1,1:5]
|
62
62
|
|
63
63
|
sday="%02d"%int(row[1])+"/"+"%02d"%int(row[2])+"_"+"%02d"%int(row[3])+":"+"%02d"%int(row[4])
|
64
64
|
|