Get startedGet started for free

Building a line plot

As a trader at a prestigious Wall Street investment firm, your boss has asked you to visualize Microsoft's stock performance over time. The firm needs to decide on a significant investment in tech stocks, and your analysis will help inform this critical decision.

You have been provided with a DataFrame called msft_df containing Microsoft's historical stock data. Your task is to create a clear and informative line chart that shows the stock's opening price trends over time.

This exercise is part of the course

Introduction to Data Visualization with Plotly in Python

View Course

Exercise instructions

  • Create a line chart using the msft_df DataFrame with the "Date" column on the x-axis and the "Open" column on the y-axis.
  • Ensure your visualization has the title "Microsoft Stock Price".

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Create a line chart
fig = px.____(
  data_frame=____,  
  x="____", 
  y="____", 
  title="____")

# Display the plot
fig.show()
Edit and Run Code