Displaying 1 result from an estimated 1 matches for "feddebt".
Did you mean:
fedde
2011 Aug 19
1
Writing non-graphic (text) output to PDF
...ut
nothing worked. All I get is the title.
# **********************************************************************
# Load the DEBT table.
debt <- readRDS("T:/R.Data/Debt.rData")
dim(debt)
# Open the debt.pdf file for graphics output.
pdf(
file=paste(
"R:/DAS/DMS/FedDebt"
,"DataDiscovery"
,"DistributionAnalysis"
,"Report"
,"Debt.pdf"
,sep="/"
)
)
# ======================================================================
# Write the debt structucture to the output PDF.
plot.new()...