Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MIRACUM
dqa
DQAgui
Commits
7f502d31
Commit
7f502d31
authored
4 years ago
by
Lorenz Kapsner
Browse files
Options
Download
Email Patches
Plain Diff
updated displaying of sql button
parent
6735833b
master
colored_diff_summary
development
development-Differences
feat_new_coreds
fix_no_timefiltering
fix_settings_from_env
lab-module
latest
time_compare_fix
trino
v0.2.4
v0.2.3
v0.2.2
v0.2.1
v0.2.0
v0.1.9
v0.1.8
v0.1.7
v0.1.6
v0.1.5
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
DESCRIPTION
+4
-3
DESCRIPTION
R/moduleDashboard.R
+8
-6
R/moduleDashboard.R
R/moduleDescriptive.R
+10
-8
R/moduleDescriptive.R
data-raw/devstuffs.R
+1
-1
data-raw/devstuffs.R
with
23 additions
and
18 deletions
+23
-18
DESCRIPTION
+
4
-
3
View file @
7f502d31
Package: DQAgui
Title: DQA GUI
Version: 0.1.4.900
5
Version: 0.1.4.900
6
Authors@R:
c(person(given = "Lorenz A.",
family = "Kapsner",
...
...
@@ -21,7 +21,7 @@ LazyData: true
URL: https://github.com/miracum/dqa-dqagui
BugReports: https://github.com/miracum/dqa-dqagui/issues
Encoding: UTF-8
Date: 2020-08-2
4
Date: 2020-08-2
5
Imports:
data.table,
magrittr,
...
...
@@ -38,5 +38,6 @@ Suggests:
testthat,
processx,
lintr
Remotes:
Remotes:
url::https://gitlab.miracum.org/miracum/dqa/dqastats/-/archive/development/dqastats-development.zip
RoxygenNote: 7.1.1
This diff is collapsed.
Click to expand it.
R/moduleDashboard.R
+
8
-
6
View file @
7f502d31
...
...
@@ -132,14 +132,16 @@ module_dashboard_server <-
# calculate descriptive results
rv
$
results_descriptive
<-
DQAstats
::
descriptive_results
(
rv
=
rv
,
headless
=
rv
$
headless
)
DQAstats
::
descriptive_results
(
rv
=
shiny
::
reactiveValuesToList
(
rv
),
headless
=
rv
$
headless
)
if
(
!
is.null
(
rv
$
data_plausibility
$
atemporal
))
{
# calculate plausibilites
rv
$
results_plausibility_atemporal
<-
DQAstats
::
atemp_pausi_results
(
rv
=
rv
,
rv
=
shiny
::
reactiveValuesToList
(
rv
)
,
atemp_vars
=
rv
$
data_plausibility
$
atemporal
,
mdr
=
rv
$
mdr
,
headless
=
rv
$
headless
...
...
@@ -148,7 +150,7 @@ module_dashboard_server <-
if
(
nrow
(
rv
$
pl
$
uniq_vars
)
!=
0
&&
rv
$
pl
$
uniq_possible
)
{
rv
$
results_plausibility_unique
<-
DQAstats
::
uniq_plausi_results
(
rv
=
rv
,
rv
=
shiny
::
reactiveValuesToList
(
rv
)
,
uniq_vars
=
rv
$
pl
$
uniq_vars
,
mdr
=
rv
$
mdr
,
headless
=
rv
$
headless
...
...
@@ -158,7 +160,7 @@ module_dashboard_server <-
# conformance
rv
$
conformance
$
value_conformance
<-
DQAstats
::
value_conformance
(
rv
=
rv
,
rv
=
shiny
::
reactiveValuesToList
(
rv
)
,
scope
=
"descriptive"
,
results
=
rv
$
results_descriptive
,
logfile_dir
=
rv
$
log
$
logfile_dir
,
...
...
@@ -186,7 +188,7 @@ module_dashboard_server <-
if
(
!
is.null
(
rv
$
results_plausibility_atemporal
))
{
add_value_conformance
<-
DQAstats
::
value_conformance
(
rv
=
rv
,
rv
=
shiny
::
reactiveValuesToList
(
rv
)
,
scope
=
"plausibility"
,
results
=
rv
$
results_plausibility_atemporal
,
logfile_dir
=
rv
$
log
$
logfile_dir
,
...
...
This diff is collapsed.
Click to expand it.
R/moduleDescriptive.R
+
10
-
8
View file @
7f502d31
...
...
@@ -429,7 +429,10 @@ module_descriptive_ui <- function(id) {
),
tableOutput
(
ns
(
"descr_selection_counts_source"
)
))),
),
tags
$
hr
(),
uiOutput
(
ns
(
"descr_source_sql"
))
)),
fluidRow
(
column
(
8
,
h5
(
...
...
@@ -442,9 +445,7 @@ module_descriptive_ui <- function(id) {
4
,
conditionalPanel
(
condition
=
"output['moduleDescriptive-got_valueset_s']"
,
uiOutput
(
ns
(
"descr_checks_source"
))),
tags
$
hr
(),
uiOutput
(
ns
(
"descr_source_sql"
))
uiOutput
(
ns
(
"descr_checks_source"
)))
))
),
box
(
...
...
@@ -464,7 +465,10 @@ module_descriptive_ui <- function(id) {
),
tableOutput
(
ns
(
"descr_selection_counts_target"
)
))),
),
tags
$
hr
(),
uiOutput
(
ns
(
"descr_target_sql"
))
)),
fluidRow
(
column
(
8
,
h5
(
...
...
@@ -477,9 +481,7 @@ module_descriptive_ui <- function(id) {
4
,
conditionalPanel
(
condition
=
"output['moduleDescriptive-got_valueset_t']"
,
uiOutput
(
ns
(
"descr_checks_target"
))),
tags
$
hr
(),
uiOutput
(
ns
(
"descr_target_sql"
))
uiOutput
(
ns
(
"descr_checks_target"
)))
))
)
))
...
...
This diff is collapsed.
Click to expand it.
data-raw/devstuffs.R
+
1
-
1
View file @
7f502d31
...
...
@@ -28,7 +28,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc
$
del
(
"Maintainer"
)
# Set the version
my_desc
$
set_version
(
"0.1.4.900
5
"
)
my_desc
$
set_version
(
"0.1.4.900
6
"
)
# The title of your package
my_desc
$
set
(
Title
=
"DQA GUI"
)
# The description of your package
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help