ggplot2,多行图(从语法的角度来看)

时间:2016-09-12 08:55:05

标签: r ggplot2

我有两个代码:

第一个代码用一个lm行创建绘图:

/**
 * @param hello
 * @return
 */
public int test(int hello){

}

第二个代码制作用ggplot(mpg, aes(displ, hwy)) + geom_point(aes(colour = class)) + geom_smooth(se = FALSE) lm行绘制:

n

ggplot(mpg, aes(displ, hwy,colour = class)) + geom_point() + geom_smooth(se = FALSE) 的角度来看,您能解释一下grammar(或者更准确地说是代码行中的位置,这个输入所在的位置)对图的影响(一行或多行)线)?

非常感谢。

0 个答案:

没有答案