Created
November 27, 2017 14:07
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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