主页

索引

模块索引

搜索页面

5.4.3. display函数

引入:

from IPython import display

使用:

display.set_matplotlib_formats('svg')

显示 html:

from IPython.display import display, HTML
import pandas as pd

df = pd.DataFrame(dataset[picks])
display(HTML(df.to_html()))

主页

索引

模块索引

搜索页面