Plot data from a DataFrame
pandas
DataFrames are one of the most frequently used data structures in Python. They consist of clearly organized and labeled data, which make it easy to start exploring your data quickly. One of the best ways to explore a DataFrame is by employing the power of matplotlib
. In this exercise, you'll perform a visualize exploration of bicycle crossings over the Freemont Bridge in Seattle held in the freemont_df
DataFrame.
Remember that matplotlib
was designed with MATLAB
users in mind.
This exercise is part of the course
Python for MATLAB Users
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create a bar plot of mean daily trips
plt.____(freemont_df.columns,
____.mean(),
xerr=freemont_df.sem(),
capsize=3)
# Add an x-label and plot title
plt.xlabel('Average Trips')
plt.title('Average trips per day')
# Remember to show the plot
plt.show()