You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like a summary row value can't be missing, even though missing values are displayed correctly (without error or warning) as part of a normal column. Is this known/expected?
library(gt)
example<- gt(data.frame(a= c(1, NA, 3)))
summary_rows(example, columns=a, fns=list(~ sum(.)))
#> Error: Problem with `mutate()` column `a`.#> ℹ `a = (function (x) ...`.#> ℹ `a` must be size 1, not 0.