Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Pluto.jl 中显示一个 DataFrame 时,会出现一个滚动条。有人知道如何使我的输出单元更大/适合我的数据框吗?
如果将数据框转换为 html,Pluto 应该将其显示为整个 HTML 表格:
using BrowseTables ... df = select(dfs[1], :sample) HTMLTable(df)
您可以更改 Pluto 的 css 以防止该问题。添加一个单元格:
html"""<style> pluto-output.scroll_y { max-height: 450px; /* changed this from 400 to 450 */ } """
改变这个:
对此: