We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ffe3f commit fa01867Copy full SHA for fa01867
bisect/46684.py
@@ -0,0 +1,10 @@
1
+# BUG: apply on DataFrame results in TypeError: copy() missing 1 required positional argument: 'self' #46684
2
+
3
+import pandas as pd
4
5
+print(pd.__version__)
6
7
+df = pd.DataFrame(list(range(100)))
8
9
+result = df.apply(lambda x: type(x))
10
+print(result)
0 commit comments