Created
March 1, 2018 01:25
-
-
Save JohnnyBizzel/f0661866edc1ea1cd3140d1b5eb47f87 to your computer and use it in GitHub Desktop.
Example of a bar chart
This file contains 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
import pygal | |
import os | |
bar = pygal.Bar() | |
bar.title = "Test Graph" | |
bar.add('Lightning', 89) | |
bar.add('Penguins', 76) | |
bar.add('Rangers', 60) | |
bar.add('Predators', 87) | |
bar.render_in_browser() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment