Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I am struggling to figure out manipulation with nested classes in data frames. I have prepared simple example to to demonstrate it data class User( val firstName: String, val lastName: String, ...
Michal's user avatar
  • 1,321
5 votes
3 answers
409 views

Material3 rememberDatePickerState() crashing in desktop and iOS platforms. I am using kotlin = "2.2.10" version for my Kotlin Compose Multiplatform (KMP/CMP) project. It runs fine on android ...
Touhid's user avatar
  • 1,754
1 vote
1 answer
232 views

The latest release (0.15.0) of the Dataframe library for Kotlin Notebook uses the method readCsv (note: lowercase sv), and in the following code, I'm using it to read in a CSV of my Discover card ...
Travis Well's user avatar
1 vote
1 answer
102 views

Say I have the dataframe like this: val df = dataFrameOf("name", "age")( "Alice", 15, "Bob", 20, null, 100 ) Then I want to replace null in the ...
Soid's user avatar
  • 2,908
1 vote
2 answers
613 views

Given a @DataSchema how do I go about creating an empty DataFrame<MySchema> and then adding rows? I tried val df = emptyDataFrame<MySchema>() but df.append(...) results in an exception (...
David Soroko's user avatar
  • 9,394
2 votes
0 answers
318 views

I'm totally new to Kotlin Dataframes and the documentation seems patchy. I have a dataframe containing a count of items and a calculated percentage of total: countsDF.groupBy("type").count()....
meshymesh's user avatar
0 votes
1 answer
228 views

Is there a way to create a carthesian product (all possible pairs of values) of two columns in Kotlin Dataframe (similar to Pandas for Python) in form of a DataFrame instance? It can naturally be ...
czerny's user avatar
  • 16.9k