Skip to content

Commit

Permalink
Removed all the little test modifications used to see changes in the …
Browse files Browse the repository at this point in the history
…shiny app
  • Loading branch information
cyrilrader authored Oct 16, 2024
1 parent 81aa84f commit 491e8a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/checkdataset.R
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ checkdataset = function(Event = NULL, Occurrence = NULL, eMoF = NULL, IPTreport
ungroup() %>%
left_join(parameters , by = c("measurementTypeID"="uri")) %>%
transmute (IDlink, measurementType, minValue, maxValue, measurementUnit,
count, TypeID_standardUnit_test = standardunit, TypeID_name = preflabel,
count, TypeID_standardUnit = standardunit, TypeID_name = preflabel,
TypeID_definition = definition))


Expand Down Expand Up @@ -1713,8 +1713,8 @@ if(exists("Occurrence")){
if (is.null(IPTreport$dtb$general_issues) == FALSE){
if(nrow(IPTreport$dtb$general_issues) > 0){

IPTreport$dtb$general_issues <- IPTreport$dtb$general_issues %>% select(-level) %>% mutate (count = as.integer(count)) %>%
arrange(table, field, desc(count))
IPTreport$dtb$general_issues <- IPTreport$dtb$general_issues %>% mutate (count = as.integer(count)) %>%
arrange(table, level, field, desc(count))
} else {
IPTreport$dtb$general_issues <- c ("There don't seem to be any issues")
}} else {
Expand Down

0 comments on commit 491e8a6

Please sign in to comment.