I want to generate 25000 entries with items having certain category. Now I want to generate these items such that the certain type of category has more than 60% chances to be applied to these items.
e.g: I have three categories "Tiny", "Small", "major". Now I want to generate items with random categories so that 1st item may have category "Tiny", second may have "tiny" again, third may have "major", fourth may have "small". Now here if I want "major" category to have 60% or more chances of being selected out of the three how do I do it?
I want that certain category to be distributed uniformly among the 25000 entries. It should not be that the first 60% or more have that certain category.
I hope I have clearly stated the question if there are other questions please let me know, I am using JAVA as the language
public static void generateRandomCategories(int type) {
//get biased values from below array based on type
String categories[] = {"TINY", "SMALL", "MAJOR"};
Random rand = new Random();
for(int i=0; i<25000; i++)
{
if(i<17000 && type!=1)
randomCategories[i] = categories[type];
else
randomCategories[i] = categories[rand.nextInt(3)];
}
}