Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Bokeh API Support 3D Plots?

Tags:

api

bokeh

I've been poking around the Bokeh API docs for a few hours, and haven't found anything relevant. So I wanted to ask if anyone knows whether or not the Bokeh API supports 3D ploting (similar to what you can do in matplotlib with mpl_toolkits.mplot3d)?

like image 814
semore_1267 Avatar asked Oct 12 '16 04:10

semore_1267


1 Answers

You'd have to use the Surface3d custom model example demonstrated here:

http://docs.bokeh.org/en/latest/docs/user_guide/extensions_gallery/wrapping.html#userguide-extensions-examples-wrapping

You won't have to write any JavaScript, but you'll have to copy over the Surface3d class and inline JS, then create your own instance of it.

like image 144
Luke Canavan Avatar answered Sep 23 '22 03:09

Luke Canavan