I have a CSV which has following data:
Hybrid ON OFF Model
1 1.022 1.033 0.939 283
2 0.988 1.016 1.068 283
3 1.012 0.958 1.872 283
4 1.073 5.476 0.907 283
5 1.054 0.952 0.902 283
6 0.992 0.941 0.908 283
I am trying to create a dot plot with something like this image.
Basically red green and blue are hybrid, on and off respectively, and on x-axis they are grouped on the 'Model'. I am familiar with creating simple plots using plot() but I have been reading some tutorial that this could be achieved using ggplot and melt..which looks a bit advanced. Appreciate if someone can provide some indicators. I have tried to create levels for different config after loading the csv:
load <- read.csv("combined_temp.csv", sep="," , header=TRUE)
df <- data.frame(Config= rep(c("Hybrid", "ON", "OFF")))
I want use ggplot after this but not sure how to do that.. even not sure if I am doing the replication right. Sorry I am extremely new to R.

