Hello
Is it possible to use SQL to identify fields/columns that are associated with a specific outcome?
I.e. let's say I have data like:
Male, 140kg, 174cm, 124/85 mmHg
Female, 130kg, 163cm, 122/84 mmHg
I want to get insight about how weight and height are associated with blood pressure.
I suppose some kind of regression/classification would provide that but I want to do that for every field in addition to any combination of fields.
Can SQL do that easily or do you recommend any other way?
Thanks