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.
何かを見落としている可能性は十分にありますが、RSQLite パッケージを使用する場合、R スクリプト内で特殊な文字列 ":memory:" を使用してデータ取得を高速化することは可能ですか?
はい、特殊文字列を使用することは引き続き可能:memory:です。のヘルプ ファイルを見てください?RSQLite:::dbGetInfo。良い例があります。
:memory:
?RSQLite:::dbGetInfo
library(RSQLite) data(USArrests) drv <- dbDriver("SQLite") con <- dbConnect(drv, dbname=":memory:")