rhandson表列排序使 NA 位于顶部

问题描述 投票:0回答:1

当对 rhandsontable 进行列排序时,如何使 NA 出现在顶部。在排序过程中,NA 值始终位于底部。

mtcars[1, ] <- NA
rhandsontable(mtcars) %>% 
  hot_cols(columnSorting = TRUE)

javascript r handsontable rhandsontable
1个回答
0
投票

查看 docs 后,我能想到的最好办法是设置

sortEmptyCells = TRUE
,当按降序排序时,它仍然会将 NA 放在底部,但反之亦然,当按升序排序时,会将它们放在顶部.

library(rhandsontable)

mtcars[1, ] <- NA

rhandsontable(mtcars[1:10, 1:2]) %>%
  hot_cols(
    columnSorting = list(
      sortEmptyCells = TRUE
    )
  )

© www.soinside.com 2019 - 2024. All rights reserved.