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.
Cet exercice fait partie du cours
Introduction to Data Visualization with Plotly in Python
Instructions
- Create a line chart using the
msft_dfDataFrame 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".
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Create a line chart
fig = px.____(
data_frame=____,
x="____",
y="____",
title="____")
# Display the plot
fig.show()