I am hoping for some advice in editing a graph. I used this code to generate the graph and manually edited the labels in the graph editor. I wanted to remove the space after the last bin but couldn't find a way to do this. Test.gph
egen testvar = cut(Offdayrange), at(0, 1, 8, 32, 90, 180, 365, 730, 3000) icodes
table testvar, contents(min Offdayrange max Offdayrange)
hist testvar, freq bin(8)
Any advice is appreciated.
egen testvar = cut(Offdayrange), at(0, 1, 8, 32, 90, 180, 365, 730, 3000) icodes
table testvar, contents(min Offdayrange max Offdayrange)
hist testvar, freq bin(8)
Any advice is appreciated.
Comment