Skip to content

Instantly share code, notes, and snippets.

@stephenturner
Created December 5, 2018 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephenturner/fc7eb9dc024a37cbf3368b529cae7deb to your computer and use it in GitHub Desktop.
Save stephenturner/fc7eb9dc024a37cbf3368b529cae7deb to your computer and use it in GitHub Desktop.
have <- tibble::tribble(
~id1, ~id2, ~value,
"a", "b", 1L,
"c", "a", 2L,
"c", "b", 3L
)
have
want <- tibble::tribble(
~id1, ~id2, ~value,
"a", "b", 1L,
"a", "c", 2L,
"b", "c", 3L
)
want
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment