How to fit Pluto.jl output cell to DataFrame size

713 Views Asked by At

When I display a DataFrame in Pluto.jl a scrollbar appears. Does somebody know how to make my output cell bigger/fit my dataframe?

enter image description here

2

There are 2 best solutions below

0
On BEST ANSWER

you can change the css of Pluto to prevent the issue. Adding a cell with:

html"""<style>
pluto-output.scroll_y {
    max-height: 450px; /* changed this from 400 to 450 */
}
"""

changes this: enter image description here

to this: enter image description here

4
On

If you convert the dataframe to html, Pluto should display it as an entire HTML table:

using BrowseTables
...
df = select(dfs[1], :sample)
HTMLTable(df)