在ggplot中,我试图绘制一个连续变量" CPUE"反对"年"并根据分类变量分配不同的颜色" Gear"。
ggplot(data=datAn, aes(Year, CPUE, color=Gear))+geom_point()
我突然收到以下错误消息:
Error in discrete_colours(colours):could not find function "discrete_colours"
不确定这是否相关,但在加载库时,我得到以下内容:
Attaching package: ‘ggplot2’
The following objects are masked _by_ ‘.GlobalEnv’:
scale_colour_continuous, scale_colour_discrete, scale_colour_gradient, scale_fill_continuous,
scale_fill_discrete, scale_fill_gradient
有人可以帮忙吗?