嵌入在wordpress岗位的Bokeh剧情

时间:2016-05-17 20:43:02

标签: python wordpress bokeh

我可以在帖子中生成并嵌入散景图,但无法将图形对齐左(或中心)

使用autoload_static()生成的绘图如下所示:

import numpy as np
from bokeh.plotting import figure
from bokeh.embed import autoload_static
from bokeh.resources import CDN


x = np.random.uniform(0, 1, 10)
y = np.random.uniform(0, 1, 10)

p = figure(width = 400, height = 400,
       title = 'Sample Figure')

p.circle(x, y, size = 10)

js, tag = autoload_static(model = p, resources = CDN, 
                      script_path = 'mysite/sample.js')

jsfile = open('sample.js', 'w')
jsfile.write(js)
jsfile.close

print(tag)

然后,将sample.js上传到网站,并将标记粘贴到wordpress帖子编辑器中,这样就可以了:

embedded figure

如何让图的左边缘与帖子的左边缘对齐?

编辑:刚看到这个问题

Center embedded Bokeh plot,我认为是同样的问题,但它有点过头了。

1 个答案:

答案 0 :(得分:1)

我不完全确定自己,但我有一些你可以研究的想法,

1)退房:https://github.com/bokeh/bokeh/tree/master/examples/embed

2)我知道如果你把js内容与 script 标签放在wordpress上就可以用HTML编写帖子,据我所知,它应该嵌入代码。

希望这有帮助。