python
1import plotly.graph_objects as go
2import pandas as pd
3
4# Load and filter Apple stock data for 2016
5apple_df = pd.read_csv(
6 "https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv",
7 parse_dates=["Date"],
8 index_col="Date"
9)
10
11apple_df_2016 = apple_df["2016"]
12
13# Create figure and add line
14fig = go.Figure()
15fig.add_trace(go.Scatter(
16 x=apple_df_2016.index,
17 y=apple_df_2016["AAPL.High"],
18 mode="lines"
19))
20
21# Set custom x-axis labels
22fig.update_xaxes(
23 ticktext=["End of Q1", "End of Q2", "End of Q3", "End of Q4"],
24 tickvals=["2016-04-01", "2016-07-01", "2016-10-01", apple_df_2016.index.max()],
25)
26
27fig.update_xaxes(showgrid=False,showticklabels=False)
28fig.update_yaxes(showgrid=False,showticklabels=False)
29fig.show()
こんにちは、上のコードはplotlyのドキュメントを参照しています。showticklabels=Falseとすると、軸の数値が表示されなくなります。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/29 08:08
2020/12/29 08:13