ggplot2將文本自動居中在geom_text圖層中。例如: library(ggplot2)
library(tidyverse)
df <- data_frame(text = c("A short sentence.",
"A slightly longer sentence.",
"This sentence is the longest of
我是R中的新手,我想使用條形圖和ggplot將數據可視化。 我有下面的數據,當我想要查看這些數據時,負值的文本不會顯示在Bar下面。 dat <- read.table(text = "sample Types Value
sample1 A -36
sample2 B 31
sample1 C 15
sample2 D -12
sample1 E 27
sample2 F 16
s