我正在创建如下的直方图:
options papersize=(10in 10in);
goptions device=pdfc vsize=4in htext=10ptk;
Options topmargin="0in" bottommargin="0in" leftmargin="0in" rightmargin="0in";
ods pdf file="&folder/histo1.pdf";
goptions hsize=10in vsize=10in border;
ods select where=(_name_ ? 'Histogr');
proc univariate data=phd.customers;
var BetCount;
histogram BetCount / name='histogr';
run;
ods pdf close;
我希望输出pdf与此类似,没有边距并裁剪到直方图的边缘:http://pgfplots.sourceforge.net/h_example_22.pdf
感谢您对此提供任何帮助。