You should choose at least one predictor to build the model. Of course, you
may select them all, or try only several of your choice.
Although the cars.csv table has more than 20 fields, we use just four,
since those are most influent, and anova test says they're ok (p-values are almost zero).
## Analysis of Variance Table
##
## Model 1: CO2.Emissions ~ Brand
## Model 2: CO2.Emissions ~ Brand + Top.Speed
## Model 3: CO2.Emissions ~ Brand + Top.Speed + Power.Output
## Res.Df RSS Df Sum of Sq F Pr(>F)
## 1 36 28948.5
## 2 35 15079.5 1 13869 102.826 8.155e-12 ***
## 3 34 4585.9 1 10494 77.801 2.619e-10 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1