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.
Este ejercicio forma parte del curso
Introduction to Data Visualization with Plotly in Python
Instrucciones del ejercicio
- 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"
.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create a line chart
fig = px.____(
data_frame=____,
x="____",
y="____",
title="____")
# Display the plot
fig.show()