您好,登錄后才能下訂單哦!
這篇“ggplot2的主題函數有哪些”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“ggplot2的主題函數有哪些”文章吧。
dat type Sample Num 1 A sample1 90 2 B sample1 34 3 C sample1 56 4 D sample1 99 5 E sample1 15 6 A sample2 50 7 B sample2 20 8 C sample2 24 9 D sample2 70 10 E sample2 14
基礎繪圖,如果不設置theme具體的參數:
p = ggplot(dat, aes(x = type,y = Num,fill = Sample))+ geom_bar(stat ="identity",width = 0.6,position = "dodge")+ scale_fill_manual(values = c("red","blue"))+ labs(x = "",y = "", title = "test")+ geom_text(aes(label = dat$Num),position=position_dodge(width = 0.5),size = 5,vjust = -0.25) p
套用theme_bw():
p1=p+theme_bw() p1
套用theme_classic():
p2=p+theme_classic() p2
套用theme_void():
p3=p+theme_void() p3
其他的還包括多種:
theme_dark() theme_grey() theme_gray() theme_light() theme_get() theme_linedraw() ....等等
以上就是關于“ggplot2的主題函數有哪些”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。