Skip to content

Instantly share code, notes, and snippets.

@pierdom
Created November 27, 2017 14:07
Show Gist options
  • Save pierdom/448b4d5191eab86a05985a824688ee0a to your computer and use it in GitHub Desktop.
Save pierdom/448b4d5191eab86a05985a824688ee0a to your computer and use it in GitHub Desktop.
[Axis options in Holoviews/Bokeh plots] includes: tick labels rotation, logarithmic scale and other ticks options #python #visualization #holoviews #bokeh #datascience
hm = hv.HeatMap(((x_names, y_names, od_pivot)))
hm = hm.opts(plot={"xrotation": 90})
#Other axis options
# 'logy': True
# 'yaxis': None
# 'xrotation': 90}
# 'xticks': 3
# 'xticks': [0, 100, 300, 500]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment