Save R randomForest object to SQL database -
is there way save randomforests object (or other large objects) r sql database. thing can think of dsub object , save varchar(max) wondering if there's way.
the native way serialize object using serialize()
. if database supports binary objects, can use binary serialization, otherwise can use rawtochar(serialize(x, null, ascii=true))
obtain string.
note dput
inherently dangerous storage because allows arbitrary execution attacks.
Comments
Post a Comment