Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将 R 中的 randomForests 对象(或其他大对象)保存到 SQL 数据库中。我唯一能想到的是将对象 dsub 并将其保存为 varchar(max) 但想知道是否还有其他方法。
本机方式是使用serialize(). 如果你的数据库支持二进制对象,可以使用二进制序列化,否则可以使用rawToChar(serialize(x, NULL, ascii=TRUE))获取字符串。
serialize()
rawToChar(serialize(x, NULL, ascii=TRUE))
请注意,这dput对于存储来说本质上是危险的,因为它允许任意执行攻击。
dput