下面的GPLOT过程生成许多图(它根据不同的产品给出销售)。如果我的产品有“沙发”,“床”,“椅子”,它会给出3张图表,一张是沙发,一张是椅子,一张是床。
我希望将生成的所有三个图都输出到一个PDF文件中。我尝试了以下方法,但它只保留生成的最后一个图。知道我该怎么做吗?
ODS PDF FILE= 'OUTPUT.PDF';
PROC GPLOT data = AB.TEMP;
plot sales*Months=Product;
by Region;
run;
ODS PDF CLOSE;
谢谢!
我有这样的班
public class RoomDetails
{
public int RoomIndexID {get;set;} --(This is No of Rooms)
public int roomcategoryID {get;set;} -- (This is No of Category that room have)
public decimal roomPrice{get;set;}
public string roomCategory{get;set;}
}
所以我有这样的RoomDetails列表(数据)