我正在使用R进行可视化数据营,提交时出现以下消息: 您没有定义足够的ggplot命令。 创建包含数据和aes层的对象:dia_plot
library(ggplot2)
str(diamonds)
dia_plot<- diamonds
dia_plot <- ggplot(diamonds, aes(x = carat, y = price,color=clarity))+ geom_point()
ggplot(diamonds, aes(x = carat, y = price,color=clarity))+geom_point()