You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import holoviews as hv
from holoviews import dim
import numpy as np
hv.extension('bokeh')
from bokeh.models.tickers import LogTicker
x = np.random.rand(5,3)
hv.Points(x, ['x', 'y'], 'z').opts(
size=10, color=dim('z'), padding=.1,
colorbar=True, colorbar_opts=dict(ticker=LogTicker()))
throws a
TypeError [Call holoviews.ipython.show_traceback() for details]
MetaModel object got multiple values for keyword argument 'ticker'
The text was updated successfully, but these errors were encountered:
throws a
The text was updated successfully, but these errors were encountered: