當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R googledrive drive_examples 示例文件


googledrive 提供各種示例文件(本地和遠程)可用於示例和 repreexes。這些函數可幫助您訪問示例文件。有關更多信息,請參閱vignette("example-files", package = "googledrive")

用法

drive_examples_local(matches)

drive_examples_remote(matches)

drive_example_local(matches)

drive_example_remote(matches)

參數

matches

與所需示例文件的名稱匹配的正則表達式。對於複數形式( drive_examples_local()drive_examples_remote() ),此參數是可選的,並且如果提供,則允許多個匹配。單一形式( drive_example_local()drive_example_remote() )需要此參數並要求恰好有一個匹配項。

  • 對於 drive_example_local()drive_examples_local() ,一個或多個本地文件路徑。

  • 對於 drive_example_remote()drive_examples_remote()dribble

例子

drive_examples_local() %>% basename()
#> [1] "chicken.csv"     "chicken.jpg"     "chicken.pdf"    
#> [4] "chicken.txt"     "imdb_latin1.csv" "r_about.html"   
#> [7] "r_logo.jpg"     
drive_examples_local("chicken") %>% basename()
#> [1] "chicken.csv" "chicken.jpg" "chicken.pdf" "chicken.txt"
drive_example_local("imdb")
#> [1] "/home/runner/work/_temp/Library/googledrive/extdata/example_files/imdb_latin1.csv"

drive_examples_remote()
#> # A dribble: 9 × 3
#>   name            id       drive_resource   
#>   <chr>           <drv_id> <list>           
#> 1 chicken_doc     1X9pd4n… <named list [31]>
#> 2 chicken_sheet   1SeFXkr… <named list [31]>
#> 3 chicken.csv     1VOh6wW… <named list [37]>
#> 4 chicken.jpg     1b2_Zjz… <named list [39]>
#> 5 chicken.pdf     13OQcAo… <named list [38]>
#> 6 chicken.txt     1wOLeWV… <named list [38]>
#> 7 imdb_latin1.csv 1YJSVa0… <named list [37]>
#> 8 r_about.html    1sfCT0z… <named list [38]>
#> 9 r_logo.jpg      1J4v-iy… <named list [39]>
drive_examples_remote("chicken")
#> # A dribble: 6 × 3
#>   name          id       drive_resource   
#>   <chr>         <drv_id> <list>           
#> 1 chicken_doc   1X9pd4n… <named list [31]>
#> 2 chicken_sheet 1SeFXkr… <named list [31]>
#> 3 chicken.csv   1VOh6wW… <named list [37]>
#> 4 chicken.jpg   1b2_Zjz… <named list [39]>
#> 5 chicken.pdf   13OQcAo… <named list [38]>
#> 6 chicken.txt   1wOLeWV… <named list [38]>
drive_example_remote("chicken_doc")
#> # A dribble: 1 × 3
#>   name        id                                           drive_resource
#>   <chr>       <drv_id>                                     <list>        
#> 1 chicken_doc 1X9pd4nOjl33zDFfTjw-_eFL7Qb9_g6VfVFDp1PPae94 <named list>  
源代碼:R/drive_examples.R

相關用法


注:本文由純淨天空篩選整理自Jennifer Bryan等大神的英文原創作品 Example files。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。