Hi.
I want to create a range plot. The X-axis should show the value of "days" (the min is replicate "one" values, and max replicate "two" values) and the Y-axis the "isolates." However, I also, for each isolate, want to show the values for each of the "treatment" (e.g., in different colors). I don't really know where to begin and how to solve this issue, and would very much appreciate any help I could get.
Thank you.
x <- wrapr::build_frame(
"isolate" , "treatment" , "days", "replicate" |
"SKA34" , "viable_co" , 18L , "one" |
"SKA34" , "mono" , 6L , "one" |
"SKA34" , "killed_co" , 4L , "one" |
"SKA34" , "killed_coco", 1L , "one" |
"MED222" , "viable_co" , 18L , "one" |
"MED222" , "mono" , 10L , "one" |
"MED222" , "killed_co" , 5L , "one" |
"MED222" , "killed_coco", 5L , "one" |
"SKA34" , "viable_co" , 18L , "two" |
"SKA34" , "mono" , 4L , "two" |
"SKA34" , "killed_co" , 6L , "two" |
"SKA34" , "killed_coco", 1L , "two" |
"MED222" , "viable_co" , 18L , "two" |
"MED222" , "mono" , 8L , "two" |
"MED222" , "killed_co" , 5L , "two" |
"MED222" , "killed_coco", 5L , "two" )