回答編集履歴
1
追加の質問への回答
test
CHANGED
@@ -3,3 +3,37 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
の'4' '5'と'6' '7'と'8' '9'のところにカンマが抜けています。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
値がないの意味が良くわかりませんが、ないんだったら適当な値を入れれば良いのでしょう。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```python
|
14
|
+
|
15
|
+
import numpy as np
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
def correct(df, index, column, irregular=np.nan):
|
20
|
+
|
21
|
+
try:
|
22
|
+
|
23
|
+
return df.loc[index, column]
|
24
|
+
|
25
|
+
except Exception:
|
26
|
+
|
27
|
+
return irregular
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
inputdata = [a, b, c] + [correct(df_sum3, i, 'count') for i in range(-10, 11)]
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
みたいなことを書けばよいのではないですか。
|