brand vehicleType
0 volkswagen NaN
1 audi coupe
2 jeep suv
3 volkswagen kleinwagen
4 skoda kleinwagen
5 bmw limousine
6 peugeot cabrio
7 volkswagen limousine
8 ford bus
9 volkswagen kleinwagen
10 mazda limousine
11 volkswagen kombi
12 volkswagen kombi
13 volkswagen kombi
14 nissan suv
d=df.groupby(['brand','vehicleType']).vehicleType.count()
From the dataframe, I got the following table by performing the above operation
Now, how do I perform a descending sorting operation to the count column which is unnamed?

d.sort_values(ascending=False).sort_index(level='brand', sort_remaining=False)