-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
163 lines (143 loc) · 3.71 KB
/
README.Rmd
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
154
155
156
157
158
159
160
161
162
163
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# pacta.sit.rep <img src="assets/images/logo.png" align="right" width="120" />
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
This repository generates a simple situation report of the overall code health of the PACTA ecosystem.
Code health is reported at the level of the R package, and at the level of the Transition Monitor Docker image.
## R Packages
### PACTA for Banks
``` {r echo = FALSE, results = "asis"}
banks_repos <- list(
c(
path = "RMI-PACTA/r2dii.data",
lifecycle = "stable",
ci_check = "R.yml"
),
c(
path = "RMI-PACTA/r2dii.match",
lifecycle = "stable",
ci_check = "R.yml"
),
c(
path = "RMI-PACTA/r2dii.analysis",
lifecycle = "stable",
ci_check = "R.yml"
),
c(
path = "RMI-PACTA/r2dii.plot",
lifecycle = "experimental",
ci_check = "R.yml"
)
)
banks_table <- pacta.sit.rep::generate_package_table(banks_repos)
knitr::kable(banks_table)
```
### Transition Monitor
``` {r echo = FALSE, results = "asis"}
transition_monitor_repos <- list(
c(
path = "RMI-PACTA/pacta.scenario.data.preparation",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.scenario.data.preparation",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.data.scraping",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.data.preparation",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.portfolio.import",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.portfolio.audit",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.portfolio.allocate",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.portfolio.report",
lifecycle = "experimental",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.executive.summary",
lifecycle = "experimental",
ci_check = "R-CMD-check.yaml"
),
c(
path = "RMI-PACTA/pacta.portfolio.utils",
lifecycle = "stable",
ci_check = "R-CMD-check.yaml"
)
)
tm_table <- pacta.sit.rep::generate_package_table(transition_monitor_repos)
knitr::kable(tm_table)
```
### PACTA for Supervisors
``` {r echo = FALSE, results = "asis"}
supervisor_repos <- list(
c(
path = "RMI-PACTA/pacta.multi.loanbook",
lifecycle = "experimental",
ci_check = "R-CMD-check.yaml"
)
)
tm_table <- pacta.sit.rep::generate_package_table(supervisor_repos)
knitr::kable(tm_table)
```
## Workflows and Docker Images
### Transition Monitor
``` {r echo = FALSE, results = "asis"}
transition_monitor_workflows <- list(
c(
path = "RMI-PACTA/workflow.scenario.preparation",
lifecycle = "stable",
ci_check = "docker.yml"
),
c(
path = "RMI-PACTA/workflow.benchmark.preparation",
lifecycle = "experimental",
ci_check = "docker.yml"
),
c(
path = "RMI-PACTA/workflow.data.preparation",
lifecycle = "stable",
ci_check = "docker.yml"
),
c(
path = "RMI-PACTA/workflow.transition.monitor",
lifecycle = "stable",
ci_check = "build-Docker-image-triggers.yml"
)
)
workflow_table <- pacta.sit.rep::generate_workflow_table(transition_monitor_workflows)
knitr::kable(workflow_table)
```