以下示例应该可以工作,但它需要selenium
包(据我了解,在后台chartify
使用包构建交互式图表bokeh
并使用 截图selenium
)
import chartify
chartify.examples.plot_scatter()
上面的代码不起作用,因为我无法为 Selenium 配置驱动程序,这通常与此类似:
from selenium import webdriver
driver = webdriver.Chrome(executable_path=(my_path + '/chromedriver)')
我怎样才能将这个driver
对象传递给chartify
?