我试图让 kable 以不同于默认顺序的顺序显示行和列。例如,在下面的示例中,行将是 A、B、C。有没有办法在 kable 中将它们设为 C、A、B?
现在,我正在使用将字母放在某些行名前面的 hacky 方法来强制默认顺序不同,但我不希望这些字母出现在最终输出中,因为它们看起来很傻。
Product = c('A','B','A','A','C','B')
Month = c('Jan', 'Feb', 'Feb', 'Apr', 'Jan', 'Feb')
my_data = data.frame(Product, Month)
my_table = table(my_data)
kable(my_table) #This defaults to alphabetical order
提前致谢。