001、R语言中plot函数基础背景色为白色
plot(1:10) ## 测试基础绘图
002、
par(bg = "cyan", fg = "purple") ## 利用par函数指定绘图的背景色和前景色 plot(1:10)