The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"sampling using external dataset weights"
I have 2 datasets having the same attributes. I need to sample dataset n.2 rebuilding the same value distribution of dataset 1 on a given attribute.
Example dataset1:
Id;attr1;attr2
1;a;555
2;a;550
3;b;400
Example dataset2:
Id;attr1;attr2
1;a;555
2;a;550
3;a;551
4;a;590
5;b;420
Example of sampled dataset2 based on attr1 in dataset1::
Id;attr1;attr2
2;a;550
4;a;590
5;b;421
Example dataset1:
Id;attr1;attr2
1;a;555
2;a;550
3;b;400
Example dataset2:
Id;attr1;attr2
1;a;555
2;a;550
3;a;551
4;a;590
5;b;420
Example of sampled dataset2 based on attr1 in dataset1::
Id;attr1;attr2
2;a;550
4;a;590
5;b;421
0
Answers
I'm not quite sure what is needed. Is it as follows.
In the first example set count the number of times a appears and count the number of times b appears. Express this as a fraction of the whole so it would be 0.67 a and 0.33 b. Randomly select from the second example set so that a and b appear with the same fraction as in the first. Is that correct?
Andrew
It's fiddly but it will be possible. I have something simple worked out but if I give you some pointers you may find that you will get there first since I don't have the spare time at the moment.
Use Aggregate to count the numbers of examples of type a and type b.
Use Extract Macros and Generate Macros to determine the ratio of a to b.
In the set to be sampled, assume one type is the most frequent. Filter and allow this type through completely. The number of the other value is determined by the number of the first value adjusted by the ratio from earlier. Use the Sample operator to select this number of the other value. Use Append to join example sets together.
This is not a generic method and will struggle if some of the assumptions are wrong.
Andrew