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 ファイルに実行したい R スクリプトがあります。どうすればロードできますか?
source("/path/to/file.R")Pythonコード内にしたいのですが、この名前で!
source("/path/to/file.R")
sourceR の関数を他の関数と同じようにインポートするだけです。
source
import rpy2.robjects as robjects r_source = robjects.r['source'] r_source("path/to/file.R")