采用技术手段解决吧!
The interpolation methods used by PROC EXPAND assume that there are no restrictions on the range of values that series can have. This assumption can sometimes cause problems if the series must be within a certain range.
/* SAS codes below */
proc expand data=qtrly out=temp from=qtr to=month;
convert gdp / observed=average;
id date;
run;