Last active
July 21, 2021 15:04
-
-
Save trevismd/c7f229732111e892a3fc692b5ca44518 to your computer and use it in GitHub Desktop.
Plot 3 box pairs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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