我想知道如何绘制表示实际值的垂直双杠,而不是R中的频率分布。
答案 0 :(得分:1)
以下是一些简单的例子。希望他们能帮忙。
df <- data.frame(x = 1:10,
y = c(2, 3, 4, 5, 1, 2, 7, 8, 6, 4))
barplot(height = df$y)
library(ggplot2)
ggplot(df, aes(x = x, y = y)) +
geom_bar(stat = "identity")
library(plotly)
plot_ly(df, x = x, y = y, type = "bar")
library(lattice)
barchart(x~y, data = df)