Reactable R - 将每页的最大行数从 10 更改为 5
Reactable R - Change the Maximum Number of Rows per Page from 10 to 5
我想将 Reactable 中每页的行数限制在 10 到 5 之间。
这是一个可重现的样本
set.seed(250)
df <- tibble(x = sample(x = 1:20))
reactable(df)
现在,当您 运行 此代码时,有两页,每页 10 行。我想要四页,每页 5 行。
您可以使用 defaultPageSize
参数 (https://glin.github.io/reactable/articles/examples.html#pagination)
更改默认页面大小 (10)
library(reactable)
set.seed(250)
df <- dplyr::tibble(x = sample(x = 1:20))
reactable(df, defaultPageSize = 5)
我想将 Reactable 中每页的行数限制在 10 到 5 之间。
这是一个可重现的样本
set.seed(250)
df <- tibble(x = sample(x = 1:20))
reactable(df)
现在,当您 运行 此代码时,有两页,每页 10 行。我想要四页,每页 5 行。
您可以使用 defaultPageSize
参数 (https://glin.github.io/reactable/articles/examples.html#pagination)
library(reactable)
set.seed(250)
df <- dplyr::tibble(x = sample(x = 1:20))
reactable(df, defaultPageSize = 5)