Skip to content

Instantly share code, notes, and snippets.

@trevismd
Last active July 21, 2021 15:04
Show Gist options
  • Save trevismd/c7f229732111e892a3fc692b5ca44518 to your computer and use it in GitHub Desktop.
Save trevismd/c7f229732111e892a3fc692b5ca44518 to your computer and use it in GitHub Desktop.
Plot 3 box pairs
pairs = [
[('Robots', 'Successful'), ('Robots', 'Failed')],
[('Flight', 'Successful'), ('Flight', 'Failed')],
[('Sound', 'Successful'), ('Sound', 'Failed')],
[('Robots', 'Successful'), ('Robots', 'Live')],
[('Flight', 'Successful'), ('Flight', 'Live')],
[('Sound', 'Successful'), ('Sound', 'Live')],
[('Robots', 'Failed'), ('Robots', 'Live')],
[('Flight', 'Failed'), ('Flight', 'Live')],
[('Sound', 'Failed'), ('Sound', 'Live')]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment