We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be8d477 commit 43f1f9bCopy full SHA for 43f1f9b
1 file changed
src/DataFrame/Collection.extension.st
@@ -23,7 +23,10 @@ Collection >> asDataFrame [
23
| value |
24
value := row at: colIndex ifAbsent: [ nil ].
25
dataFrame at: rowIndex at: colIndex put: value ] ].
26
-
+ 1 to: numberOfColumns do: [ :colIndex |
27
+ dataFrame dataTypes
28
+ at: colIndex
29
+ put: (dataFrame columnAt: colIndex) calculateDataType ].
30
31
^ dataFrame
32
]
0 commit comments