When I display a DataFrame in Pluto.jl a scrollbar appears. Does somebody know how to make my output cell bigger/fit my dataframe?
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:
to this:
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)
Copyright © 2021 Jogjafile Inc.
you can change the css of Pluto to prevent the issue. Adding a cell with:
changes this:
to this: