Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Suppose I have a bunch of people who did a few tests (let's call it tests A). Now I'll do a second test (test B) in order to categorize these people into two categories (that have a pre-defined "true" answer).

Note that score from test A can only predict the signal-to-noise ratio of test B. I.e you can't use score from test A to do the categorization itself.

My aim is to select a group of people that are as easily categorized into correct categories as possible (I.e actual score of test B does not matter), using the score of test A.

Now, I want to examine how test A (which consists of multiple variables A1, A2...) predicts the final outcome.

How could I do that? I thought about creating bunch of subgroups of a fixed sample size randomly and measure the mean of test score A and the percentage I got the categorization right for these subgroups, and then apply regression analysis on that. Would this be a valid approach? If not, what is the correct way of doing this?

share|improve this question

1 Answer

This sounds like a trivial classification problem. The variables A1,A2,... will be your data and the true categories are dependent to these data. You can start with trying off-the-shelf classifiers, e.g. http://www.csie.ntu.edu.tw/~cjlin/libsvm/ or http://www.mathworks.com/help/toolbox/stats/classify.html.

share|improve this answer
actually, the true category does not depend on A. They depend on B instead, and scores of B does not depend on A (only the "quality" of score B depends on A). – Clamstew May 29 '12 at 3:53
Can you clarify your question further? It would be best if you could explain it in terms of variables and their dependencies. – emrea May 29 '12 at 7:25
Sorry, I think I completely messed up this question. Because the problem I had changed a bit as well, I opened a new question that hopefully is presented clear enough: stats.stackexchange.com/questions/29458/… – Clamstew May 30 '12 at 8:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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