Get help from the marimo community

Updated 4 weeks ago

display dataframe with 12 rows ?

At a glance

The community member is trying to display all 12 rows of a dataframe, but the ui.dataframe feature has transformation features they don't need. They are looking for a way to call the "default dataframe" feature and set the page size. In the comments, another community member provides the solution: mo.ui.table(data_to_show, page_size=12, selection=None).

i would like to display all 12 rows of a dataframe (or other numbers > 10).
ui.dataframe has a page_size param, but has the transformation features I dont need and cant switch off ... is there a way to call the "default dataframe" feature and set some params like page size ? I cant find it ๐Ÿ˜ฆ
thanks a lot ๐Ÿ™‚
Marked as solution
ok, found it thanks to the "view similar posts" (sorry i tried looking but didnt find this), the solution to my pain seems to be:
mo.ui.table(data_to_show, page_size=12, selection=None)
View full solution
m
1 comment
ok, found it thanks to the "view similar posts" (sorry i tried looking but didnt find this), the solution to my pain seems to be:
mo.ui.table(data_to_show, page_size=12, selection=None)
Add a reply
Sign up and join the conversation on Discord