- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 06-13-2019 02:22 PM
(678 views)
Is there a way to use proc expand to interpolate a time series from quarterly to monthly frequency without taking the number of days into account? Treating all quarters/months as if they have the same number of days?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc expand data=qtr_series out=mth_series from=qtr to=month; convert analysis_var / observed=average; id date_var; run;