当我在DataFrame中显示Pluto.jl时,会出现一个滚动条。有人知道如何使我的输出单元更大/适合我的数据吗?

发布于 2021-06-22 12:44:13
您可以更改冥王星的css以防止问题的发生。添加具有以下内容的单元格:
html"""<style>
pluto-output.scroll_y {
max-height: 450px; /* changed this from 400 to 450 */
}
"""改变这一点:

对此:

发布于 2021-03-14 19:45:57
如果将dataframe转换为html,Pluto应该将其显示为一个完整的HTML表:
using BrowseTables
...
df = select(dfs[1], :sample)
HTMLTable(df)https://stackoverflow.com/questions/66624243
复制相似问题