Extract to sqlite db from R: Renaming row_name column -
i'm writing sqlite db r using following command:
dbwritetable(con, 'topics',as.data.frame(topics), row.names = na, overwrite = false, append = true, field.types = null)
how can rename row_names attribute?
this row.names
argument dbwritetable
for: set character value rename column, set null
avoid writing altogether. explore guessrowname()
function in dbi
package other options.
Comments
Post a Comment