There is a finite set of characteristics that are possible in population. I want to create a data set with every combination of the variable values. So a row for each of these unique combinations.
Here is a toy example:
Age: 0-110
Gender: Male / Female
Weight: 0-500
Height: 0-100
etc.
So its set would look like this:
0, M, 0, 0
...
110, F, 500, 100
What would be the best way to accomplish this, possibly using R, to create a data sample with an observation for every possible combination of these variable values? In actuality, I will have way more variables. I figured if I couldn't figure it out, which I want to, I could do a Monte Carlo simulation and remove duplicates. I get that this will be a huge dataset!
Here is a toy example:
Age: 0-110
Gender: Male / Female
Weight: 0-500
Height: 0-100
etc.
So its set would look like this:
0, M, 0, 0
...
110, F, 500, 100
What would be the best way to accomplish this, possibly using R, to create a data sample with an observation for every possible combination of these variable values? In actuality, I will have way more variables. I figured if I couldn't figure it out, which I want to, I could do a Monte Carlo simulation and remove duplicates. I get that this will be a huge dataset!