Disproportional Stratified Sampling – Python
I have a dataset of people, it includes their assigned id from one through eight, and their gender. Using python, how might I use Disproportional Stratified Sampling to make some teams? I’ve used this code to get the distribution: from openpyxl import load_workbook wb = load_workbook("dataset.xlsx") sh = wb["Page"] dist = [] for i in… Read More Disproportional Stratified Sampling – Python