dataframejuliapluto.jl

How to fit Pluto.jl output cell to DataFrame size


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


Solution

  • 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