We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given two columns of data A, B want to be able to construct sets where each pair defines a membership using transitive equality.
E.g.
A,B B,C B,D E,F E,G G,H
Becomes:
A: A,B,C,D E: F,G,H
Result should be a members value as the name (e.g. A and E in example above).
A
E
Adds a single column.
Table.add_set_from_pairs first:Column second:Column as:Text="Set" -> Table
The text was updated successfully, but these errors were encountered:
GregoryTravis
No branches or pull requests
Given two columns of data A, B want to be able to construct sets where each pair defines a membership using transitive equality.
E.g.
Becomes:
Result should be a members value as the name (e.g.
A
andE
in example above).Adds a single column.
The text was updated successfully, but these errors were encountered: