我正在尝试使用其他值的对象访问我的对象,我收到此错误
无法访问密钥" raisonSociale"在班级的对象" XX \ XXX \ XX \"在XXBundle:XXX:list.html.twig第52行没有实现ArrayAccess接口。
data test;
input Cust_id Month Sale_Amt;
Datalines;
5 5 478
5 6 126.8
5 9 52.50
5 12 33.8
10 3 32.60
10 1 200
;
run;
proc sort data = test out = test_sort;
by cust_id month;
run;
data test2 ( drop = month sale_amt i );
set test_sort;
by cust_id;
array holder (*) Month1-Month12;
retain Month1-Month12;
do i = 1 to 12;
if first.cust_id then holder{i} = .;
if month = i then holder{i} = sale_amt;
end;
if last.cust_id;
run;
你能帮帮我吗?
这很好,因为我使用了一个对象,我想像数组一样访问它。