Displaying 2 results from an estimated 2 matches for "maturity_date".
2013 Apr 03
4
Better way of writing R code
...is is not a finance problem)
I have two data.frames as
currency_df = data.frame(current_date = c("3/4/2013", "3/4/2013", "3/4/2013", "3/4/2013"), issue_date = c("27/11/2012", "9/12/2012", "14/01/2013", "28/02/2013"), maturity_date = c("27/04/2013", "3/5/2013", "14/6/2013", "28/06/2013"), currency = c("USD", "USD", "GBP", "SEK"), other_currency = c("EURO", "CAD", "CHF", "USD"), transaction = c("Buy"...
2005 Feb 18
1
R crashes on Repeated ODBC Queries
...tion.auction_type_code like
'",auction.type,"%' AND rates.day =
'",sprintf('%i-%i-%i',the.auc.date[1],the.auc.date[2],the.auc.date[3]),"'
AND issue_date =
'",sprintf('%i-%i-%i',the.is.date[1],the.is.date[2],the.is.date[3]),"' AND
maturity_date =
'",sprintf('%i-%i-%i',the.mat.date[1],the.mat.date[2],the.mat.date[3]),"';",
sep="")
tmp.data <- auction.connect(cmnd)
if (!is.nan(tmp.data[1,1])){
tmp.bidders <- unique(tmp.data$fiid)
for (k in tmp...