Dear all,
I often use 'lgraph' for having a quick look of the trends in my long-format datasets. 'lgraph' is a user written program by Timothy Mark, and the program is avaialble through 'ssc install'. I am having a weird problem with this. Any graph I am producing, 'lgraph' showing y-labels and x-labels misplaced. The weirdest thing is, not only the new graphs, it is not even producing the identical graphs (with same codes) those I created couple of months back. Could anyone please confirm if having the same problem or it is only me !! See the example graph below:
Note the ylabels gone up than the ticks and the xlabels next to the ticks. Also note the default size of the x/y labels and I am sure they were never like this.
I often use 'lgraph' for having a quick look of the trends in my long-format datasets. 'lgraph' is a user written program by Timothy Mark, and the program is avaialble through 'ssc install'. I am having a weird problem with this. Any graph I am producing, 'lgraph' showing y-labels and x-labels misplaced. The weirdest thing is, not only the new graphs, it is not even producing the identical graphs (with same codes) those I created couple of months back. Could anyone please confirm if having the same problem or it is only me !! See the example graph below:
Code:
clear edi set obs 300 gen y = runiform() gen x = int((1-0+1)*runiform()+0) replace y =y*x if x==1 gen time = int((3-1+1)*runiform()+1) lgraph y time x
Comment