2017-09-14 90 views
2

我想將我的腳本的工作目錄設置爲文件的父目錄。將工作目錄設置爲R中的腳本文件的父文件夾

我的文件夾結構謨/代碼/ test.R

在腳本「test.R」,我寫道:

getwd() 
setwd(dirname(getwd())) 
print(getwd()) 

然而,工作目錄將取決於在哪裏源腳本在終端。

在終端方面,我公司推出從文件夾「項目」和「項目/代碼」的劇本,並得到以下結果:

~/Documents/project: Rscript code/test.R 
~/Documents/project 
~/Documents 

~/Documents/project/code: Rscript test.R 
~/Documents/project/code 
~/Documents/project 

我想找到的目錄的方式在該文件位於。

我的會話信息是在這裏:

> sessionInfo() 
R version 3.4.0 (2017-04-21) 
Platform: x86_64-apple-darwin16.5.0 (64-bit) 
Running under: macOS Sierra 10.12.6 

Matrix products: default 
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 
LAPACK: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 

locale: 
[1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8 

attached base packages: 
[1] stats  graphics grDevices utils  datasets methods base  

other attached packages: 
[1] bindrcpp_0.2 dplyr_0.7.2 

loaded via a namespace (and not attached): 
[1] Biobase_2.36.2    jsonlite_1.5    
[3] bit64_0.9-7    splines_3.4.0    
[5] Formula_1.2-2    assertthat_0.2.0   
[7] stats4_3.4.0    latticeExtra_0.6-28  
[9] blob_1.1.0     GenomeInfoDbData_0.99.0 
[11] yaml_2.1.14    RSQLite_2.0    
[13] backports_1.1.0   lattice_0.20-35   
[15] glue_1.1.1     digest_0.6.12    
[17] GenomicRanges_1.28.4  RColorBrewer_1.1-2   
[19] XVector_0.16.0    checkmate_1.8.3   
[21] colorspace_1.3-2   htmltools_0.3.6   
[23] Matrix_1.2-10    plyr_1.8.4     
[25] DESeq2_1.16.1    XML_3.98-1.9    
[27] pkgconfig_2.0.1   pheatmap_1.0.8    
[29] genefilter_1.58.1   zlibbioc_1.22.0   
[31] purrr_0.2.3    xtable_1.8-2    
[33] scales_0.4.1    BiocParallel_1.10.1  
[35] htmlTable_1.9    tibble_1.3.3    
[37] annotate_1.54.0   IRanges_2.10.2    
[39] ggplot2_2.2.1    SummarizedExperiment_1.6.3 
[41] nnet_7.3-12    BiocGenerics_0.22.0  
[43] lazyeval_0.2.0    survival_2.41-3   
[45] magrittr_1.5    evaluate_0.10.1   
[47] memoise_1.1.0    foreign_0.8-69    
[49] tools_3.4.0    data.table_1.10.4   
[51] matrixStats_0.52.2   stringr_1.2.0    
[53] S4Vectors_0.14.3   munsell_0.4.3    
[55] locfit_1.5-9.1    cluster_2.0.6    
[57] DelayedArray_0.2.7   AnnotationDbi_1.38.2  
[59] compiler_3.4.0    GenomeInfoDb_1.12.2  
[61] rlang_0.1.2    grid_3.4.0     
[63] RCurl_1.95-4.8    rstudioapi_0.6    
[65] htmlwidgets_0.9   rmarkdown_1.6    
[67] bitops_1.0-6    base64enc_0.1-3   
[69] labeling_0.3    gtable_0.2.0    
[71] DBI_0.7     R6_2.2.2     
[73] gridExtra_2.2.1   knitr_1.17     
[75] bit_1.1-12     rprojroot_1.2    
[77] bindr_0.1     Hmisc_4.0-3    
[79] stringi_1.1.5    parallel_3.4.0    
[81] Rcpp_0.12.12    geneplotter_1.54.0   
[83] rpart_4.1-11    acepack_1.4.1 

感謝。

Best,C.

回答

1

我試過dirname(parent.frame(2)$ofile)dirname(sys.frame(2)$ofile)方法,但都沒有和我一起工作真的很好(我是R上3.4.1,使用RStudio,和Windows 10)。我試圖在RStudio和R GUI中獲取它。也試圖從命令行運行它。

以下來自用戶rakensi(https://stackoverflow.com/users/1021892/rakensi)的方法對我而言確實很好。積分歸功於他。 鏈接回答:Getting path of an R script

另一種方法(test_v2.R)適用於我使用Rscript。積分轉到用戶蒸籠25(https://stackoverflow.com/users/93345/steamer25)和鏈接到答案(Rscript: Determine path of the executing script)。

test.R運行此使用源(test.R)在Rstudio

## Run this from ~/Documents/project/code or directory of your choice 
script.dir <- getSrcDirectory(function(x) {x}) 
print(script.dir) 
# gives you ~/Documents/project/code 
setwd(script.dir) 

test_v2.R運行此使用Rscript.exe

thisFile <- function() { 
    cmdArgs <- commandArgs(trailingOnly = FALSE) 
    needle <- "--file=" 
    match <- grep(needle, cmdArgs) 
    if (length(match) > 0) { 
     # Rscript 
     return(normalizePath(sub(needle, "", cmdArgs[match]))) 
    } else { 
     # 'source'd via R console 
     return(normalizePath(sys.frames()[[1]]$ofile)) 
    } 
} 
script.dir <- dirname(thisFile()) 
setwd(script.dir) 
print(getwd()) 
+0

嗨,不幸的是這並不適用於我:〜/ code:Rscript test.R character(0) 錯誤setwd(script.dir):字符參數預計 執行停止 – charlesdarwin

+1

@charlesdarwin您是如何運行腳本的?我會在RStudio中獲取這個腳本來獲得預期的結果。你是從cmd提示符運行它(或者在你的情況下可能是終端)? – addicted

+1

如果您從命令提示符(使用Rscript.exe)運行它,可能我有其他解決方案可行(請參閱我在上面的答案中的編輯)。感謝用戶steamer25(https://stackoverflow.com/users/93345/steamer25)。 – addicted

2

這會將目錄更改爲源文件位置。

this.dir <- dirname(parent.frame(2)$ofile) 
setwd(this.dir) 
+0

我用此代碼,但得到以下錯誤:在dirname中的錯誤(parent.frame(2)$ ofile): 一個字符向量參數expe cted 執行停止 – charlesdarwin

+0

並且print(parent.frame(2)$ ofile)給出NULL。 – charlesdarwin

+0

好的,如果你從'項目'的文件中找到這個文件,這隻會適用於你。你有rstudio嗎?如果是這樣,這應該工作: 'setwd(dirname(rstudioapi :: getActiveDocumentContext()$ path))'。 –

相關問題