Jolan Rensen

Results 443 comments of Jolan Rensen

Hi! We don't have such functionality at the moment, but it might be a handy addition. Tracking additions, deletions, and modifications, similar to how git would do it, requires a...

@CarloMariaProietti This feature will likely not be considered for 1.0, rather 1.1. I'm curious to see how it will work out, as it's a completely new concept to DataFrame. This...

@CarloMariaProietti Thanks! I think an approach like that could work, but it leaves out some vital information: - What if there's only one value in the row that's different? It...

@CarloMariaProietti please remind me again in a week if I forget to look at it :) Currently preparing for a talk in Amsterdam for Kotlin Dev Day, so I have...

Hi there! Thanks for reaching out. You indeed make a good point that our documentation is a bit confusing in this regard. The generated properties are available out-of-the-box in [notebooks](https://kotlin.github.io/dataframe/extensionpropertiesapi.html)....

Thanks for your contribution! Some thoughts: So if I'm correct, `withDefaultHeader = true` will make the columns be named according to excel columns, like "A", "B", "C" etc.? It's not...

Maybe another task could be run. TC runs `clean build` right? So maybe you could run that one, or one specific to ktlint, like `ktlintCheck`. If I run `ktlintCheck` in...

![image](https://github.com/user-attachments/assets/83e74475-e7a3-4b17-9df8-e7995dedcac5) It also seems that frame columns and column groups are excluded? I'd expect the `group` column to get black backgrounds as well in this example. (https://github.com/Kotlin/dataframe/issues/1356)

I will revisit the format implementation later. We will need to make a recommended way to format nested dataframes https://github.com/Kotlin/dataframe/issues/1375

Actually, currently the example is even more broken than it was before... ``` cityGroup: city: String? group: * name: firstName: String lastName: String age: Int city: String? weight: Int? isHappy:...