Creating Charts in Google Colab

Google Collaboratory is great for research. It's a cloud based notebook, and a great way to visualize data in charts for your Google Colab notebooks. You can easily use chart tools with Python import libraries.

You can follow along in my tutorial here.
import plotly.express as px

fig = px.line(df, x='Month', y='Sales', title='Monthly Sales')
fig.show()