I dont know if you are familiar with the Candy-Power-Ranking Data.
But the data looks like this:
Chocolade Caramel Fruit Win%
1 1 0 0,8
0 1 0 0,54
0 0 0 0,23
1 1 1 0,49
Now I want to check which combination of properties lead to an higher Win%.
What I already did is a Multiple linear regression
lmodel = lm(candy_data$Win% ~ candy_data$chocolade + candy_data$caramel + candy_data$fruit)
summary(lmodel)
That gives me the info which propertie leads to an higher Win%. But I want to check which combinaton is the best. Do you have any idea?
question from:
https://stackoverflow.com/questions/66049684/halloween-candy-power-ranking-in-r-which-of-combination-of-properties-lead-to-a 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…