Plotly 's figurefactory
은 수정할 수있는 dict
이온을 반환합니다. 이 경우 xaxis
의 side
을 bottom
으로 설정합니다.
fig['layout']['xaxis']['side'] = 'bottom'
예 here 찍은.
import plotly.figure_factory as ff
import plotly
plotly.offline.init_notebook_mode()
z = [[.1, .3, .5],
[1.0, .8, .6],
[.6, .4, .2]]
x = ['Team A', 'Team B', 'Team C']
y = ['Game Three', 'Game Two', 'Game One']
z_text = [['Win', 'Lose', 'Win'],
['Lose', 'Lose', 'Win'],
['Win', 'Win', 'Lose']]
fig = plotly.figure_factory.create_annotated_heatmap(z,
x=x,
y=y,
annotation_text=z_text,
colorscale='Viridis')
fig['layout']['xaxis']['side'] = 'bottom'
plotly.offline.iplot(fig)