Open In App

Python | Bar Charts in Vincent

Last Updated : 02 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
In this article, we will create bar charts with the help for vincent. Which is a library in python which does python to vega translation? It has the data capabilities of python and the visualization capabilities of javascript. It is built specifically for plotting Dataframes and series quickly. Requirement : install vincent
$pip install vincent
warning : requires Pandas which requires numpy Example 1: Simple bar chart Python3
# import the vincent library
import vincent

# To initialize vincent in the notebook
vincent.core.initialize_notebook()

# pass the parameters to the bar method
bar = vincent.Bar([30, 10, 20, 15, 45, 30, 5])

# Display the bar chart
bar.display()
Output : Example 2: Bar chart with axis labels Python3
# import the vincent library
import vincent

# To initialize vincent in the notebook
vincent.core.initialize_notebook()

# pass the parameters to the bar method
bar = vincent.Bar([30, 10, 20, 15, 45, 30, 5])
# give axis names

bar.axis_titles(x ='X-axis', y ='Y-axis')

# Display the bar chart
bar.display()
Output : For more information on vincent bar charts and vincent visit this link

Next Article
Article Tags :
Practice Tags :

Similar Reads