is there a way to check if i got a "good price" on something?
I'm looking at some data. Actually, the Boston Housing dataset is probably a good proxy for it: https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html
I'm wondering if there's a way to predict if I got a "good price" given certain conditions. So something like, if I'm given a tuple such as CRIM, ZN, INDUS = (0.006320,18, 2.31), then is a house price of 50 significantly higher or lower than expected?
This isn't quite vanilla anomaly detection, because the combination of a particular CRIM, ZN, INDUS may be rare and I don't want to flag it unless price is out-of-spec for that. I guess the question is given a combination of (CRIM, ZN, INDUS) (no matter how anomalous that is), is the combination of (CRIM, ZN, INDUS, Price) rare? So, it's like a naiive bayes' problem, but that only works with categorical outputs
Topic anomaly-detection
Category Data Science