Let's assume I have 2 source files, the first one namest example1.r and the second one example2.r (given below).

example1.r

plot(1:10,1:10)

example2.r

qplot(1:10,1:10)

When I source example1.r, the graph is drawn. It does not, however, when I source example2.r. What is the solution here?

(qplot in example2.r is ggplot2's function)

link|improve this question

did you remember to load ggplot using library(ggplot2) within your source file? – Ramnath Jul 13 '11 at 7:06
Yes, sure. In other case, I would get an error since the environment wouldn't know about function qplot. – Grega Kešpret Jul 13 '11 at 7:11
feedback

1 Answer

up vote 6 down vote accepted

This is the famous FAQ 7.22: Why do lattice/trellis graphics not work?.

For grid graphics like ggplot2 or lattice, you need to print the graphics object in order to actually draw it.

Interactively on the command line this is done austomatically. Everywhere else (inside files to be sourced, loops, functions, Sweave chunks) you need to print it explicitly.

print (qplot (1 : 10, 1 : 10))

As an alternative, you can redefine qplot to do the printing:

qplot <- function (x, y = NULL, z = NULL, ...) {
  p <- ggplot2::qplot (x = x, y = y, z = z, ...)
  print (p)
}

(this changes the axis labels to x and y).

I use this approach in vignettes where I want to write code exactly as a user in an interactive session would type it.

link|improve this answer
Beautiful, thank you for your fast response. – Grega Kešpret Jul 13 '11 at 7:47
1  
Or use echo = T in source – hadley Jul 13 '11 at 12:43
Minor point: you don't need invisible(p) since print(p) returns p. – Richie Cotton Jul 13 '11 at 13:38
Thanks Richie, print (p) returns actually invisible (p) - which is what I want (if it would be visible, using it from the command line would produced the plots twice). Edited the code accordingly. – cbeleites Jul 15 '11 at 9:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.