Displaying 1 result from an estimated 1 matches for "threept".
Did you mean:
three
2012 May 31
1
Question on meaning of '%+%', '%?%' (? = various single letter) in code
...as the middle character in a 3
character string with '%' as the 1st and 3rd characters).
I?ve also recently seen ?%+%? usage at:
http://vita.had.co.nz/papers/ggplot2-wires.pdf
on p. 7 of the document the following code appears:
(Note the '%+%' string at end of 1st line.)
ggplot(threept, aes(x, y)) %+%
lineup(permute("result"), n = 8) +
geom_point(aes(colour = result, group = 1), alpha = 1/4) +
scale_colour_manual(values = c("made" = mnsl("10B 6/6"),
"missed" = mnsl("10R 6/6"))) +
xlab(NULL) + ylab(NULL) + coord_equal() +
facet_wra...