1 Star 0 Fork 9

Nancyxxi/stata-highmaps

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
zip.R 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
Painter 提交于 2020-12-01 21:16 . submit
# 压缩所有的文件夹
library(tidyverse)
library(fs)
for(i in dir_ls('code-data')){
j = str_remove(i, "code-data/")
if(!file_exists(paste0("code-data-zip/", j, ".zip"))){
zip(paste0("code-data-zip/", j, ".zip"), i)
}
}
dir_ls('code-data-zip') %>%
as.character() %>%
str_remove("code-data-zip/") %>%
str_remove(".zip") %>%
as_tibble() %>%
mutate(下载链接 = paste0("https://r-stata.github.io/stata-highmaps/code-data-zip/", value, ".zip")) %>%
mutate(下载链接 = paste0("<a href='", basename(下载链接), "'>", value, "</a>")) %>%
knitr::kable()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nancyxxi/stata-highmaps.git
[email protected]:nancyxxi/stata-highmaps.git
nancyxxi
stata-highmaps
stata-highmaps
main

搜索帮助