I am working with R.
I have two sets of values. They look like this.
setA setB
.88 .55
.67 .45
.25 .35
.40 .18
.50 .05
.70 .90
.40 .25
.57 .27
.69 .21
.90 .30
I took five values of the setA...
setA
.88
.40
.90
.57
.70
The mean of this set of words is 0.69.
Is there a way to select values of the setB that will have the same or very similar mean to 0.69?
So, I need a "random" sample of setB that will end up with a mean equal or around 0.69.
(In reality I have 800 values in setA, so is very difficult to select the values of the setB by just looking at them).