Re: [R] help in dbWriteTable

2011-12-02 Thread David M. Schruth
Hi, The following code should work: fields - dbListFields(con, db.table.name) reordered.names - names(df)[match(fields, names(df))] df - df[ ,reordered.names] But, you might want to try using the function 'dbWriteTable2' in the 'caroline' package. (In fact the three lines above have been

Re: [R] adding hyperlinked text to pdf plot

2011-12-07 Thread David M. Schruth
Hi Justin, It sounds like you might be able to use the 'hyperplot()' function (in the 'caroline' package) for creating an html imagemap around your figure. This is assuming all that you want to do is interactivate a 2-dimensional scatter plot. You'd also lose PDF-pagination but the

Re: [R] merge multiple data frames

2012-04-10 Thread David M. Schruth
Sorry this is so late: But you could try a nerge (from the 'caroline' package) nerge(list(a,b,c)) Just have to make sure that the rows for each dataframe are renamed with the date columns. On 1/30/2012 11:44 PM, Massimo Bressan wrote: thanks don I have here enough to study for a while