按顺序获取 R 中的目录列表
Get a list of directories in R in order
我正在尝试获取 R 中的目录列表。我 运行 下面的代码,我得到了我想要的东西,除了一个故障,R 没有按顺序列出它。它向我显示了一个编号列表,但顺序为 1、3、5、7 等,并列出了两个并排的文件夹。我想知道如何获得每行一个文件夹名称的列表。我附上一张图片供参考enter image description here
这是 R 中打印矢量的默认设置。如果你想格式化它,你需要使用类似 writeLines(list.dirs("c:/"))
# vectror printing
letters[1:10]
#> [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j"
# formatted printing
writeLines(letters[1:10])
#> a
#> b
#> c
#> d
#> e
#> f
#> g
#> h
#> i
#> j
我正在尝试获取 R 中的目录列表。我 运行 下面的代码,我得到了我想要的东西,除了一个故障,R 没有按顺序列出它。它向我显示了一个编号列表,但顺序为 1、3、5、7 等,并列出了两个并排的文件夹。我想知道如何获得每行一个文件夹名称的列表。我附上一张图片供参考enter image description here
这是 R 中打印矢量的默认设置。如果你想格式化它,你需要使用类似 writeLines(list.dirs("c:/"))
# vectror printing
letters[1:10]
#> [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j"
# formatted printing
writeLines(letters[1:10])
#> a
#> b
#> c
#> d
#> e
#> f
#> g
#> h
#> i
#> j