import plotly.graph_objects as go
x=[1,4,10]
y=[1,6,8]
fig = go.Figure()
fig.add_trace(go.Scatter(
x=x,
y=y,
mode="lines+markers+text",
text=["A","B","C"],
textposition="top left",))
fig.show()
描けました。
矢印を追加します
これに矢印をつけるには、矢印のannotationの始点やら終点やら方向やらを、
もともとのデータの座標とぴったり合わせたものを作って追加してやればいいぞ、と。
というわけで先ほどのコードに追記したものを次に記載します。
import plotly.graph_objects as go
x=[1,4,10]
y=[1,6,8]
fig = go.Figure()
fig.add_trace(go.Scatter(
x=x,
y=y,
mode="markers+text",
text=["A","B","C"],
textposition="top left",))
arrows =[
go.layout.Annotation(dict(
x=x[1],#x position of arrowhead
y=y[1],#y position of arrowhead
showarrow=True,
xref ="x",#reference axis of arrow head coordinate_x
yref ="y",#reference axis of arrow head coordinate_y
arrowcolor="#636efa",#color of arrow
arrowsize =1.5,#size of arrow head
arrowwidth =2,#width of arrow line
ax = x[0],#arrow tail coordinate_x
ay = y[0],#arrow tail coordinate_y
axref="x",#reference axis of arrow tail coordinate_x
ayref="y",#reference axis of arrow tail coordinate_y
arrowhead=5,#annotation arrow head style, from 0 to 8)),
go.layout.Annotation(dict(
x=x[2],#x position of arrowhead
y=y[2],#y position of arrowhead
showarrow=True,
xref ="x",#reference axis of arrow head coordinate_x
yref ="y",#reference axis of arrow head coordinate_y
arrowcolor="#636efa",#color of arrow
arrowsize =1.5,#size of arrow head
arrowwidth =2,#width of arrow line
ax = x[1],#arrow tail coordinate_x
ay = y[1],#arrow tail coordinate_y
axref="x",#reference axis of arrow tail coordinate_x
ayref="y",#reference axis of arrow tail coordinate_y
arrowhead=5,#annotation arrow head style, from 0 to 8))]
fig.update_layout(annotations=arrows)
fig.show()
import plotly.graph_objects as go
#coordinate lists (arrow head and arrow tail)
headpoint_list =[(3,3),(4,3),(5,3),(3,4),(5,4),(3,5),(4,5),(5,5)]
tailpoint_list =[(2,2),(4,2),(6,2),(2,4),(6,4),(2,6),(4,6),(6,6)]#put go.Scatter() for each coordinate into a list
arrowhead_traces =[go.Scatter(
x=[i[0]],
y=[i[1]],
mode="lines+markers")for i in headpoint_list
]
arrowtail_traces =[go.Scatter(
x=[i[0]],
y=[i[1]],
mode="markers")for i in tailpoint_list
]#merge
total_traces = arrowhead_traces + arrowtail_traces
#make a list of go.layout.Annotation() for each pair of arrow head and tail
arrows =[go.layout.Annotation(dict(
x= head[0],#x position of arrowhead
y= head[1],#y position of arrowhead
showarrow=True,
xref ="x",#reference axis of arrow head coordinate_x
yref ="y",#reference axis of arrow head coordinate_y
arrowcolor="#636efa",#color of arrow
arrowsize =1.5,#size of arrow head
arrowwidth =2,#width of arrow line
ax = tail[0],#arrow tail coordinate_x
ay = tail[1],#arrow tail coordinate_y
axref="x",#reference axis of arrow tail coordinate_x
ayref="y",#reference axis of arrow tail coordinate_y
arrowhead=i,#annotation arrow head style, from 0 to 8
text ='style #'+str(i),))for i,(head, tail)in enumerate(zip(headpoint_list, tailpoint_list))]#pass total_traces to go.Figure
fig = go.Figure(total_traces)#update_layout with annotations
fig.update_layout(annotations=arrows)
fig.show()
#coordinate lists (arrow head and arrow tail)
arrowhead_traces =[go.Scatter(
x=[i[0]],
y=[i[1]],
mode="lines")for i in headpoint_list
]#put go.Scatter() for each coordinate into a list
arrowtail_traces =[go.Scatter(
x=[i[0]],
y=[i[1]],
mode="lines+markers",
marker={'opacity':0},)for i in tailpoint_list
]
個人情報に関するお知らせ Notice regarding personal information
当ウェブサイトでは Cookie を使用して、お客様の好みや繰り返しのアクセスを記憶することで、最も適切なエクスペリエンスを提供します。「すべて受け入れる」をクリックすると、すべての Cookie の使用に同意したことになります。 ただし、「Cookie 設定」にアクセスして、管理された同意を提供することができます。We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the ...
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Cookie
期間
説明
cookielawinfo-checkbox-analytics
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional
11 months
The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy
11 months
The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.