如何垂直翻转姓名"快速"和"慢"通过' barplot()' ?
barplot(table(mode))
答案 0 :(得分:0)
x <- c("1.3.43.33", "2.2.43.33", "1.3.43.33", "66.3.43.33")
df = as.data.frame(table(x))
df
library(ggplot2)
ggplot(df, aes(x = x, y = Freq))+
geom_bar(stat = "identity")
答案 1 :(得分:0)
只需写下:
barplot(table(x), las = 2)
其中x
是您的数据向量:
x <- c("1.3.43.33", "2.2.43.33", "1.3.43.33", "66.3.43.33")
答案 2 :(得分:0)
添加&#34; las&#34;用于更改标签方向的参数
barplot(table(mode), las=2)