TEST: Do not publish

title '';
proc sgplot data=sashelp.cars(where=(type ne 'Hybrid'));
  histogram mpg_city;
  density mpg_city / lineattrs=(pattern=solid);
  density mpg_city / type=kernel lineattrs=(pattern=dashed);
  keylegend / location=inside position=topleft across=1;
  yaxis offsetmin=0 grid;
run;