In [1]:
import plotly.tools as tls
In [2]:
tls.embed('https://plot.ly/~marianne2/2555')
Out[2]:
In [3]:
import plotly.plotly as py
In [4]:
fig = py.get_figure('https://plot.ly/~marianne2/2555')
In [5]:
fig['data'][0]['z'][0][:10]
Out[5]:
In [6]:
fig['layout']
Out[6]:
In [7]:
fig['data'][0]['colorscale']
Out[7]:
In [8]:
fig['data'][0]['colorscale'] = 'Viridis'
In [9]:
py.iplot(fig, filename='mock-entropy-viridis')
Out[9]:
Do you think viridis is a better colorscale in this case?