[Solved] comparing two protocol for different values in R [closed]


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.
enter image description here

3

solved comparing two protocol for different values in R [closed]