質問編集履歴
2
エラーの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,13 +12,95 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
これに対して、以下のようにして書式を適用して「,(カンマ)」を付けようとしたのですが、
|
15
|
+
これに対して、以下のようにして書式を適用して「,(カンマ)」を付けようとしたのですが、
|
16
16
|
|
17
|
-
```
|
17
|
+
```Python
|
18
18
|
|
19
19
|
df.applymap('{:,}'.format)
|
20
20
|
|
21
21
|
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
以下のようなエラーが発生してしまいました。
|
26
|
+
|
27
|
+
```Python
|
28
|
+
|
29
|
+
---------------------------------------------------------------------------
|
30
|
+
|
31
|
+
ValueError Traceback (most recent call last)
|
32
|
+
|
33
|
+
<ipython-input-15-4735cd74c36b> in <module>()
|
34
|
+
|
35
|
+
----> 1 df.applymap('{:,}'.format)
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py in applymap(self, func)
|
40
|
+
|
41
|
+
5066 return lib.map_infer(x.asobject, func)
|
42
|
+
|
43
|
+
5067
|
44
|
+
|
45
|
+
-> 5068 return self.apply(infer)
|
46
|
+
|
47
|
+
5069
|
48
|
+
|
49
|
+
5070 # ----------------------------------------------------------------------
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py in apply(self, func, axis, broadcast, raw, reduce, args, **kwds)
|
54
|
+
|
55
|
+
4875 f, axis,
|
56
|
+
|
57
|
+
4876 reduce=reduce,
|
58
|
+
|
59
|
+
-> 4877 ignore_failures=ignore_failures)
|
60
|
+
|
61
|
+
4878 else:
|
62
|
+
|
63
|
+
4879 return self._apply_broadcast(f, axis)
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py in _apply_standard(self, func, axis, ignore_failures, reduce)
|
68
|
+
|
69
|
+
4971 try:
|
70
|
+
|
71
|
+
4972 for i, v in enumerate(series_gen):
|
72
|
+
|
73
|
+
-> 4973 results[i] = func(v)
|
74
|
+
|
75
|
+
4974 keys.append(v.name)
|
76
|
+
|
77
|
+
4975 except Exception as e:
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py in infer(x)
|
82
|
+
|
83
|
+
5064 if x.empty:
|
84
|
+
|
85
|
+
5065 return lib.map_infer(x, func)
|
86
|
+
|
87
|
+
-> 5066 return lib.map_infer(x.asobject, func)
|
88
|
+
|
89
|
+
5067
|
90
|
+
|
91
|
+
5068 return self.apply(infer)
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
pandas/_libs/src/inference.pyx in pandas._libs.lib.map_infer()
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
ValueError: ("Cannot specify ',' with 's'.", 'occurred at index date')
|
100
|
+
|
101
|
+
```
|
102
|
+
|
103
|
+
|
22
104
|
|
23
105
|
|
24
106
|
|
1
文言の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
### 困っていること、及び該当のソースコード
|
8
8
|
|
9
|
-
ベースとなるのは、以下のようなCSVから読み込んだものを、pd.read_sql_queryを使用してDataFrameに格納したもの
|
9
|
+
ベースとなるのは、以下のようなCSVから読み込んだものを、pd.read_sql_queryを使用してDataFrameに格納したものです。
|
10
10
|
|
11
11
|
![イメージ説明](166714d3ed980743fa537f744a79a648.png)
|
12
12
|
|