Displaying 1 result from an estimated 1 matches for "platerow".
Did you mean:
lateron
2012 Jun 05
0
ggplot2, grid graphics, x11(), windows(), and device fonts
...pens
if I start Windows R GUI. Can anyone help me understand the warning and
how to make sure the right fonts are designated? The relevant code fragment
is:
x11(width=7, height = 7)
library(ggplot2)
# Now some Distance ~ Time plots
p2 <- ggplot(lu.mig, aes(x=Time, y=Net.Distance, colour = PlateRow)) +
geom_point(size= 3) +
geom_line(size=1) +
facet_grid(Substrate ~ Expression) +
xlab("Time After Scratch (h)") +
ylab("Net half-distance (um)") +
opts(title='Repaired Raw 1205Lu Scratch Time Course') +
theme_bw(base_size = 18, base_family = "")...