I have a question about plotting data in R, for example, if I have the dataset like:
Group Species Value1 Value2
group1 sp1 3.2 3.7
group1 sp2 3.1 3.9
group1 sp3 3.2 4.2
group2 sp4 3.9 3.2
group2 sp5 3.7 3.6
group3 sp6 3.3 3.9
group3 sp7 4.1 3.6
which means, different Groups have different species, and each species has two values.
I want to plot like this:
I want to plot:
aes(x=value1, y=value2),
For the species belong to the same group, I want make a circle to make it clear;
The lable in right side, I also want to group them.
what kind of package or code can I use?