Displaying 1 result from an estimated 1 matches for "datadiscovery".
2011 Aug 19
1
Writing non-graphic (text) output to PDF
...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()
title("DEBT")
str(d...