I'm using the following code to generate a bubble plot using plotly:
Dataframe.iplot(kind='bubble', x='branch', y='retention', size='active_users', text='active_users',
xTitle='', yTitle='Retention',
filename='cufflinks/PlotName')
I'd like to set a manual range for Y axis. Any help would be appreciated.