Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So here's the scenario: I have about 100 or so "items", each assigned with a number and total guesses... this number is a guess of what people think the item is worth (in terms of money). This number can be an average of the guesses, or the sum of all the guesses.

I want to "split" them into (generally) n uneven groups... so for example, it may turn out that some statistical formula/equation/etc. finds out that item 1, 3, 10, etc. are in group 1, 4, 5, etc. are in group 2, and so on (up to group n).

Is there any statistical formula/equation/method that can achieve this?

I am not sure, but can Discrete Fourier Transforms do this? I've never learned it before but heard that its used to transform data into sinusoids...

Example:

You have 1000 balls, each with are colored a unique color.

You ask random people to look at a some of the balls, and rate it from a number of 1 (bad) to 1000 (good) how much they like it.

At the end of this survey, you know that each ball has their own average rating (not necessarily unique).

Now, you want to split up the balls in such a way that the balls are partitioned into, say, 5 groups (1 = bad, ..., 5 = good).

But here's the thing: you can't just split them into 5 equal groups; it could be the case that; what if there are balls that have a big number difference (i.e. ball 851 has an average vote of 700, but ball 852 has an average vote of 800?)? The votes are basically denser in some areas than others.

I think this is the basic idea... I'm not sure what else to add.

share|improve this question
2  
Based on my experience with how well statistical analysis can be manipulated, I would say any function containing rand() would be sufficient :-) – paxdiablo Aug 18 '12 at 1:32
Well, I want this data to be able to be consistently partitioned into n groups, not random. – Apothem Aug 18 '12 at 1:39
2  
This is a valid question but it belongs to stats.stackexchange.com . – Ali Aug 18 '12 at 7:50

closed as not a real question by Don Roby, woodchips, joran, Ali, Joe Aug 18 '12 at 18:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

The simplest, naivest way to do this would be to loop though all the items, generate a random number between 0 and n for each one, and assign the item to the randomly picked group. That would give you a simple random distribution of objects into N groups, although there's a small chance that a group will receive no items. But that should be straightforward to deal with by just having a second verification step in which you check to make sure that all groups are populated, and grabbing an item from the largest group (or a random one) and putting it in the empty group.

Presumably, you want something more complicated (or more "statistically good," I guess), but its impossible to determine what that would be without more knowledge of what you're trying to achieve. What would a 'statistically good' solution look like?

share|improve this answer
I've added in an example. – Apothem Aug 18 '12 at 2:21

Devise a hash function that can be used to compute an integer hash value for any item. For each item, calculate its hash value using the hash function. Lastly, take the hash value to determine the group the item goes in using modular arithmetic.

Some pseudo-code:

for item in items
do
  h = hash(item)
  i = (h mod n);
  // add item to group i
end

The only constraint to making this process repeatable is having a deterministic hash function where the same input always produces the same hash value.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.