我将data.frame传递给xtable
dat.table <- xtable(dat[1:20,] ,digits=10)
与其显示这样的数字,不如使用科学计数法。我该怎么办?
看了一下,但我发现的只是R: formatting the digits in xtable了,这似乎不是答案。
最佳答案
尝试:
dat.table <- xtable(dat[1:20,] ,digits=-10)
“如果数字的值为负,则x的相应值将以科学格式显示为abs(数字)位。” xtable
关于r - 在R中的xtable中使用科学计数法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27103006/