I am trying to plot a dendrogram using plotly. I used the code given below:
import plotly.plotly as py
import plotly.figure_factory as ff
names = list(result_data['merchant_id'])
dendro = ff.create_dendrogram(new_data,labels=names)
dendro['layout'].update({'width':1400, 'height':600})
plotly.offline.iplot(dendro, filename='simple_dendrogram')
How I can Assign title, x label and y label in above plot?
