---------------------------------------------------------------------------------------------------------------------------------- name: log: C:\Users\rwr\Dropbox\basu-house\build\code\../temp/fred4uc2quart.log log type: text opened on: 17 Jul 2016, 12:11:47 . /*** CONSTRUCT DATA FOR CHOW INTERPOLATION ***/ > /*** Real Gross Domestic Product > 2015:Q2: 16,324.3 Billions of Chained 2009 Dollars (+ see more) > Quarterly, Seasonally Adjusted Annual Rate, GDPC1, Updated: 2015-08-27 8:51 AM CDT > > Nonfarm Business Sector: Real Compensation Per Hour > 2015:Q2: 102.409 Index 2009=100 (+ see more) > Quarterly, Seasonally Adjusted, COMPRNFB, Updated: 2015-09-02 10:01 AM CDT > > Civilian Unemployment Rate > 2015-07: 5.3 Percent (+ see more) > Monthly, Seasonally Adjusted, UNRATE, Updated: 2015-08-07 8:06 AM CDT > > All Employees: Total Nonfarm Payrolls > 2015-07: 142,071 Thousands of Persons (+ see more) > Monthly, Seasonally Adjusted, PAYEMS, Updated: 2015-08-07 8:06 AM CDT > ***/ > freduse GDPC1 COMPRNFB, clear; (277 observations read) (277 observations read) . gen dateq = qofd(daten); . drop daten; . save `tempdata'junk1, replace; (note: file ../temp/junk1.dta not found) file ../temp/junk1.dta saved . freduse UNRATE PAYEMS, clear; (822 observations read) (930 observations read) . gen dateq = qofd(daten); . collapse UNRATE PAYEMS, by(dateq); . merge 1:1 dateq using `tempdata'junk1, keep(match) nogen; Result # of obs. ----------------------------------------- not matched 0 matched 277 ----------------------------------------- . erase `tempdata'junk1.dta; . gen year = year(dofq(dateq)); . gen quarter = quarter(dofq(dateq)); . rename GDPC1 rgdp; . rename COMPRNFB comp; . rename UNRATE ur; . rename PAYEMS empl; . save `myoutput'`prg'_data, replace; (note: file ../output/fred4uc2quart_data.dta not found) file ../output/fred4uc2quart_data.dta saved . drop dateq; . outsheet using `myoutput'`prg'_data.csv, replace comma; (note: file ../output/fred4uc2quart_data.csv not found) . log close; name: log: C:\Users\rwr\Dropbox\basu-house\build\code\../temp/fred4uc2quart.log log type: text closed on: 17 Jul 2016, 12:11:48 ----------------------------------------------------------------------------------------------------------------------------------