Kotlin / dataframe

Structured data processing in Kotlin
https://kotlin.github.io/dataframe/overview.html
Apache License 2.0
820 stars 58 forks source link

`Iterable<Double?>.toDataFrame()` and `Iterable<Float?>.toDataFrame()` results in empty dataframe #630

Closed Jolanrensen closed 6 months ago

Jolanrensen commented 6 months ago

As the title says

listOf(1.0, 2.0).toDataFrame() gives an empty dataframe.

The overloads for Float? and Double? are missing here: https://github.com/Kotlin/dataframe/blob/master/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/toDataFrame.kt

This is a critical miss.