CarloMariaProietti
CarloMariaProietti
Hey, i would like to work on this issue
Reading the issue, i understand that the returned DataRow should be part of a DataFrame which contains only that row. Is it correct?
Hey, i would like to work on this task
Hey, I would like to work on this issue.
That's fine. For the moment i implemented a draft. I thought of a static function that receives two DataFrames with the same schema, and returns an Iterable that contains each...
It looks like that: ```kt internal fun compareImpl(df1: DataFrame, df2: DataFrame): Iterable { val result = ArrayList() val rowsDf1 = df1.rows().toList() val rowsDf2 = df2.rows().toMutableList() for (row in rowsDf1) {...
Thank you for the explanation! I'll take a look at Difference to understand its behaviour.
Hey, sorry for the long time since the last update. I have been studying and implementing Myers difference algorithm in order to compare dataframes. PR #1556 is a draft with...
Hey, the implementation is now complete and not a draft anymore. Every detail is in #1556. I'm at full disposal for any explanation and change.
Hey, i would like to work on this issue.