回答編集履歴
1
修正
test
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
xs = pd.date_range(start='2022-01-01', end='2022-01-08', freq='3H')
|
10
10
|
ys = [random.randint(1,10) for _ in range(len(xs))]
|
11
11
|
|
12
|
-
fig = plt.figure()
|
12
|
+
fig = plt.figure(facecolor='skyblue')
|
13
13
|
ax = fig.add_subplot()
|
14
14
|
ax.plot(xs, ys)
|
15
15
|
|
@@ -24,4 +24,4 @@
|
|
24
24
|
fig.subplots_adjust(bottom=0.4)
|
25
25
|
plt.savefig('ret.png')
|
26
26
|
```
|
27
|
-

|