Gggart的qart在采购时不执行假设我有两个源文件,第一个名为example1.r第二个example2.r(见下文)。示例1.rplot(1:10,1:10)例2.rqplot(1:10,1:10)当我源例1.r时,就画出了图。然而,当我引用实例2.r时,它就没有了。这里的解决方案是什么?(例2.r为gggplot 2函数)
2 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
更新:
.R档案:
source
选择 print.eval=TRUE
将导致在交互命令行中打印评估结果的行为。
source("Script.R", print.eval=TRUE)
.RnW档案:
knitr
默认情况下,模拟交互式命令行WRT的行为。 print
英。请注意 knitr
可指定为甜引擎,也可用于R包小插画。
print (qplot (1 : 10, 1 : 10))
qplot
qplot <- function (x, y = NULL, z = NULL, ...) { p <- ggplot2::qplot (x = x, y = y, z = z, ...) print (p)}
开满天机
TA贡献1786条经验 获得超13个赞
source
knitr
Sweave
knitr
print
- 2 回答
- 0 关注
- 508 浏览
添加回答
举报
0/150
提交
取消