5
當我使用左對齊字符串創建tableGrob時,最終結果顯示在末尾截斷了字符串。 是錯誤還是我錯過了什麼?使用表左對齊不正確
library(gridExtra)
slices <- c(10, 12, 4, 16, 8)
lbls <- c("US", "UK", "long string left justified but is clipped at the end", "Germany", "France")
z <- data.frame(lbls,slices)
grid.newpage()
grid.draw(tableGrob(z, core.just="left"))
效果不錯+1!順便說一句,好幽默!我錯了還是你是作者? :-) – Michele
儘管有這些棄用,tableGrob仍然是一個非常有用的工具。 –
我剛剛用「\ n」和'padding.h = unit(10,「mm」)對其進行了測試,結果非常好。 –