进行绘图将shape列数据映射到aes(shape) library(ggplot2) p=ggplot(dat,aes(x=X,y=Y,shape=shape))+ geom_point(size=20)print(p) AI代码助手复制代码 将直接报错,注意先转化因子: dat$shape=factor(dat$shape) p=ggplot(dat,aes(x=X,y=Y,shape=shape))+ geom_point(size=10)print(p) AI代码助手...
geom_point(shape="k",size=10) print(p) 3、如果shape是"." 将绘出有一个非常小的点(此时的size并没能调整到大小) p=ggplot(dat,aes(x=X,y=Y))+ geom_point(shape=".",size=20) print(p) 4如果shape是NA 则隐藏点 p=ggplot(dat,aes(x=X,y=Y))+ geom_point(shape=NA,size=10) print(...