library(ggplot2)
ggplot(dat, aes(x = Experiment, y = Mean, colour = Method,
linetype = as.factor(Values), shape = as.factor(Values))) +
geom_line() +
geom_point()
where dat
is the name of your data frame.
3
solved comparing two protocol for different values in R [closed]