We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2558177 + dff3758 commit e6f1620Copy full SHA for e6f1620
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/KotlinNotebookPluginUtils.kt
@@ -236,13 +236,13 @@ public object KotlinNotebookPluginUtils {
236
237
is FormattedFrame<*> -> dataframeLike.df
238
239
- is AnyCol -> dataFrameOf(dataframeLike)
+ is AnyFrame -> dataframeLike
240
241
is AnyRow -> dataframeLike.toDataFrame()
242
243
is GroupBy<*, *> -> dataframeLike.toDataFrame()
244
245
- is AnyFrame -> dataframeLike
+ is AnyCol -> dataFrameOf(dataframeLike)
246
247
is DisableRowsLimitWrapper -> dataframeLike.value
248
0 commit comments