Hi there, I want to plot a earnings release date distribution based on Fama French Industry 12 as follows. However, I can only get the graph as follows. My code is like: ods graphics / antialias=on antialiasmax=22400 width=600px height=500px; proc sgplot data=dist.dist_2017; symbolchar name=line char='2509'x; scatter x=ind_code y=datadate/markerattrs=(symbol=line size=7pt); xaxis values=(1 2 3 4 5 6 7 8 9 10 11 12) label='Industry'; yaxis interval=day label='Release Date'; title "Distribution of Earnings Release Date"; run; I have spent hours working on it. Could anyone help me figure it out? Thank you so much!
... View more