def to_notebook(self, path_and_name='temp.html', width=None, height=None):
"""open viz in notebook cell"""
self.to_file(path_and_name)
display(IFrame(src=path_and_name,
width=self.width if width is None else width,
height=self.height if height is None else height))
评论列表
文章目录