2017-06-17 108 views
-1

R/RStudio/tidyverse的完整noob。 使用R 3.4.0「你愚蠢的黑暗」/ RStudio 1.0.136。 嘗試格式化y軸以顯示數千到小數點後1位。 我正在使用: scale_y_continuous(labels = scales::unit_format("k", 1e-3))但顯示爲一個整數。我如何顯示1位小數而不是30k,我得到30.1k?ggplot單位格式千位一位小數位

THX

+0

可以添加MWE? – pachamaltese

回答

1

如果你需要的東西更靈活,我建議使用自己的自定義功能,將其插入scale_y_continuous這樣的:

library(ggplot2) 

# custom formatting function 
scaleFUN <- function(x) sprintf("%.1fk", x/1000) 

# setup diamonds dataset to display something in the thousands 
diamonds2 <- diamonds 
diamonds2$price <- diamonds2$price * 100 

# make your plot and label using the custom scaleFUN function 
ggplot(diamonds2, aes(x = carat, y = price)) + 
    geom_point() + 
    scale_y_continuous(name = 'Price ($K)', 
        labels = scaleFUN)