I frequently create nonparametric statistics (loess, kernel densities, etc) on data I pull out of a relational database. To make data management easier I would like to store
Use the serialization feature to turn any R object into a (raw or character) string, then store that string. See help(serialize).
help(serialize)
Reverse this for retrieval: get the string, then unserialize() into a R object.
unserialize()