I need to format rows of a pivoted table using RHandsontable. Column formatting is super straightforward, but hot_row() does not provide the same flexibility as hot_col().
Has anyone figured out a way to format this...
library(rhandsontable)
df <- data.frame(q1=c(1,0.2),q2=c(2,0.3),q3=c(3,0.4),q4=c(4,0.5))
rownames(df) <- c('Amt','Pct')
rhandsontable(df)
...to display ints (1,2,3,4) for the first row (Amt) and percentages (20%,30%,40%,50%) for the second row (Pct)?