Solved – Cluster analysis or regression

clusteringregression

I have a table with each row representing single printer model, its features, and price. I want to know how price is formed based on these features. What should I start with? Multiple regression, so I could cut off insignificant features? Cluster analysis to define small clusters with equal price? What are the ways to do the task?

Best Answer

Welcome to the site.

I don't see how cluster analysis helps you with what you want to do. Regression is much more appropriate. That is, you have a dependent variable (price) and a bunch of independent variables (features) = a classic regression problem.

Of course, problems may arise. This would depend on how many different printer models there are, how many features there are, how many levels each feature has, and so on.