首先是读取Excel文件数据,以下两步皆需安装对应的包。
library(readxl)
test_data<-read_excel("/Users/yangxueyi/Desktop/testR.xlsx") #这里test_data是R里设定的文件名,后面“”里面的内容就是文件路径#
接着加载ggplot2包,不要直接加载ggplot,因为它只是ggplot2包里的一个函数。
library(ggplot2)
> ggplot(data=test_data, aes(x=distance,</