要用R語言繪制鳶尾花直方圖,可以按照以下步驟操作:
library(ggplot2)
data(iris)
variable <- "Sepal.Length"
ggplot(iris, aes(x = iris[[variable]], fill = Species)) +
geom_histogram(binwidth = 0.2, color = "black", alpha = 0.7, position = "dodge") +
labs(title = paste("Histogram of", variable), x = variable, y = "Frequency") +
theme_minimal()
通過以上步驟,您可以使用R語言繪制鳶尾花直方圖,同時可以根據需要調整參數和樣式以滿足您的需求。