I have a df w/ 3 variables: VOT, K, G. I want to make a plot of the K and G responses as a function of VOT. Any ideas for the best way to do this?
Here is some code I tried:
plot.K.Responses <- ggplot(mydf, aes(VOT, K, group=VOT)) +
geom_line() +
geom_point() +
facet_wrap(~VOT)
plot.K.Responses
pdf("plot.K.Responses", 18, 18, bg="transparent")
plot(plot.ID)
dev.off()