I have the following data:
```
dataex nationality economic_activity change
input str15 nationality str33 economic_activity long change
"foreign" "Agriculture, forestry and fishing" 4945
"foreign" "Mining and quarrying" -13730
"foreign" "Manufacturing" -169127
"foreign" "Construction" -1802976
"foreign" "Retail/trade" -600744
"foreign" "Total (all sectors)" -1857160
"national_male" "Agriculture, forestry and fishing" -961
"national_male" "Mining and quarrying" 11407
"national_male" "Manufacturing" 528
"national_male" "Construction" -123294
"national_male" "Retail/trade" 5815
"national_male" "Total (all sectors)" 23689
"national_female" "Agriculture, forestry and fishing" 407
"national_female" "Mining and quarrying" 1920
```
And I am trying to a graph similar to the one below:

My current code is below:
```
graph hbar (mean) change, over( nationality ) over( economic_activity )
```
which produces the graph in the file attached, which is close to the graph above, but not quite the same.
```
dataex nationality economic_activity change
input str15 nationality str33 economic_activity long change
"foreign" "Agriculture, forestry and fishing" 4945
"foreign" "Mining and quarrying" -13730
"foreign" "Manufacturing" -169127
"foreign" "Construction" -1802976
"foreign" "Retail/trade" -600744
"foreign" "Total (all sectors)" -1857160
"national_male" "Agriculture, forestry and fishing" -961
"national_male" "Mining and quarrying" 11407
"national_male" "Manufacturing" 528
"national_male" "Construction" -123294
"national_male" "Retail/trade" 5815
"national_male" "Total (all sectors)" 23689
"national_female" "Agriculture, forestry and fishing" 407
"national_female" "Mining and quarrying" 1920
```
And I am trying to a graph similar to the one below:

My current code is below:
```
graph hbar (mean) change, over( nationality ) over( economic_activity )
```
which produces the graph in the file attached, which is close to the graph above, but not quite the same.
Comment