List support #377
akosholloszabo
started this conversation in
Ideas
Replies: 2 comments
|
Hi! Thank you ❤️ . |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
I love the library. It is already way better than plotly. However every time I load a data that is not stored in a dataframe or csv it is rearly painful to convert from a per row data class based structure to a column based one. It would be very useful if I could call it for any list and in each lambda of the DSL I could say how to map the record to the to the value relevant for the lambda.
For example if I have the data class:
data class C( val x: String, val y: Int, val z:String )My data would be a List and I would use it like.
groupby{it.z}orx{it.x}ory{it.y}orcolor{it.z}I hope I could explain my idea well. Let's talk about it!
All reactions