I have a dataset with no labels. I've tried k-means to see how the data separates into multiple groups but haven't had much luck.
As an alternate approach I was thinking to "manufacture" target labels and then run a classification model (binary or multi-nomial) to detect patterns.
For example in the titanic dataset, say we didn't have access to the "survival" target variable. I could use a couple of features (say ticket fare * age) to create a new target variable and bucket them into 5 groups (quintiles) and then run a multi-nomial classification model against this new target.
If the resulting AUC (or some other metric) is high then could we conclude that the model predictions can be grouped into "clusters"? I know it would be hard to determine what each group represents but can we at least conclude that these groups exhibit a pattern?