This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from Edouard-Legoupil/koboloadeR
-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
buildsite.R
153 lines (102 loc) · 3.8 KB
/
buildsite.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
## https://www.r-bloggers.com/building-a-website-with-pkgdown-a-short-guide/
#install.packages("pkgdown")
library("pkgdown")
pkgdown::build_site()
## a few other exploration of the package
devtools::document()
devtools::release()
# devtools::build_win(version = c("R-release", "R-devel"))
attachment::att_to_description()
rhub::check_for_cran()
rhub::check()
rhub::check_for_cran(env_vars = c(`_R_CHECK_FORCE_SUGGESTS_` = "false",
`_R_CHECK_CRAN_INCOMING_USE_ASPELL_` = "false"))
library(remotes)
update(remotes::dev_package_deps(dependencies=TRUE))
require(devtools)
ch <- rhub::rhub_check_for_cran(, show_status = FALSE)
ch$update()
ch$livelog(3)
# use_readme_rmd()
# use_news_md()
# use_vignette("koboloadeR") #substitute with the name of your package
# use_github_links()
# use_travis()
# use_cran_badge()
check <- drake::expose_imports("koboloadeR",
character_only = FALSE,
envir = parent.frame(),
jobs = 1)
unlink(".RData")
# if (!requireNamespace("BiocManager", quietly = TRUE))
# install.packages("BiocManager")
#
# BiocManager::install("graph")
# BiocManager::install("Rgraphviz")
#library("CodeDepends")
##f = system.file( package = "koboloadeR")
#gg = makeCallGraph("package:koboloadeR")
# if(require(Rgraphviz)) {
# gg = layoutGraph(gg, layoutType = "circo")
# graph.par(list(nodes = list(fontsize=55)))
# renderGraph(gg) ## could also call plot directly
# }
#devtools::install_github("datastorm-open/DependenciesGraphs")
library(DependenciesGraphs)
deps <- funDependencies("package:koboloadeR", "kobo_dico")
plot(deps)
# Prepare data
dep <- envirDependencies("package:koboloadeR")
# visualization
plot(dep)
# library(mvbutils)
# foodweb(where = e)
library(pkgnet)
report1 <- CreatePackageReport(pkg_name = "koboloadeR")
library("miniCRAN")
tags <- "koboloadeR"
pkgDep(tags, availPkgs = cranJuly2014)
dg <- makeDepGraph(tags, enhances = TRUE, availPkgs = cranJuly2014)
set.seed(1)
plot(dg, legendPosition = c(-1, 1), vertex.size = 20)
library(NCmisc)
library(stringr)
library(dplyr)
checkPacks <-function(path){
## get all R files in your directory
## by the way, extract R code from Rmd: http://felixfan.github.io/extract-r-code/
files<-list.files(path)[str_detect(list.files(path), ".R$")]
## extract all functions and which package they are from
## using NCmisc::list.functions.in.file
funs<-unlist(lapply(paste0(path, "/", files), list.functions.in.file))
packs<-funs %>% names()
## "character" functions such as reactive objects in Shiny
characters<-packs[str_detect(packs, "^character")]
## user defined functions in the global environment
globals<-packs[str_detect(packs, "^.GlobalEnv")]
## functions that are in multiple packages' namespaces
multipackages<-packs[str_detect(packs, ", ")]
## get just the unique package names from multipackages
mpackages<-multipackages %>%
str_extract_all(., "[a-zA-Z0-9]+") %>%
unlist() %>%
unique()
mpackages<-mpackages[!mpackages %in% c("c", "package")]
## functions that are from single packages
packages<-packs[str_detect(packs, "package:") & !packs %in% multipackages] %>%
str_replace(., "[0-9]+$", "") %>%
str_replace(., "package:", "")
## unique packages
packages_u<-packages %>%
unique() %>%
union(., mpackages)
return(list(packs=packages_u, tb=table(packages)))
}
check2 <- checkPacks("R")
devtools::install_github("dracodoc/mischelper")
### https://laderast.github.io/2019/02/12/package-building-description-namespace/
devtools::check(document = FALSE, args = c('--as-cran', '--no-examples', '--no-tests'))
## Create documentation for the package!
#build_vignettes()
tools::showNonASCIIfile("R/kobo_crunching_report.R")
tools::showNonASCIIfile("R/kobo_atlas_report.R")