@tripleshot
we default rendering rich dataframes using our table, since it supports pagination, filtering, sorting, etc.
we found 10 to be a good default because of these navigation features (pagination, filtering, sorting).
- you can however turn off "rich dataframes" in your User Configuration in the editor UI (let me know if you can't find this setting)
- if you want to revert to the plain html ui without a rich datatable, you can use
mo.plain
import marimo as mo
mo.plain(df) # This renders pandas as its plain html
- for the above, you don't need to include all the configuration, you can instead do
mo.ui.table(df, page_size=40)