+4  A: 

The RANSAC algorithm is one approach to what you're looking for if I understand you right. http://en.wikipedia.org/wiki/RANSAC

Ray Hidayat
+1  A: 

You might use the term "outlier" in your searches. An outlier is a particular point of data that represents either a special condition not captured in the experiment design, or a statistical fluke (a point grabbed from the exstreams of the distribution in a data set too small to expect that too happen).

Outlier elimination carries some risk of biasing the result by your expectation.

dmckee
I may not have presented this clearly... I know that it appears that this might introduce bias but that occurs only of I am eliminating valid data points. In my experimental setup, the outliers occur exclusively because from bad cells (this is a biological exp.) and so I need them eliminated
Aashay
I wasn't asaying "Don't do it." Outlier elimination isn't necessarily bad: it is an accepted part of data analysis. Just be aware that it carries some risk. The usual mitigation is thrash the outlier in search of unexpected patterns...
dmckee
thnx... will keep in mind
Aashay