dataframe
dataframe copied to clipboard
Compare DataFrames
FIXES #658 It makes possible to compare DataFrame by exploiting Myers difference algotithm whose cost is O((M+N)*D) . M is length of dfA, N is length of dfB, D is length of shortest edit script to get B from A.
Returns a DataFrame< ComparisonDescription >, ComparisonDescription is a schema created specifically for this use case.
It comes with a proper test case.
About Myers difference algotithm: https://neil.fraser.name/writing/diff/myers.pdf