ComeçarComece de graça

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.

Este exercício faz parte do curso

Python for MATLAB Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# 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()
Editar e executar o código