Dear all,
I want to create a bar graph with some conditions below:
clear
input y x
1 1 1
2 2 2
3 4 3
4 6 4
5 9 5
6 10 6
7 11 10
end
graph bar (asis) y, over(x) asyvars
I want to create a bar graph with some conditions below:
- there is no space between the bars
- all bars have the same color
- there is no box for the x-title.
clear
input y x
1 1 1
2 2 2
3 4 3
4 6 4
5 9 5
6 10 6
7 11 10
end
graph bar (asis) y, over(x) asyvars

Comment