Skip to content

Commit

Permalink
Merge pull request #4546 from dannyparsons/displaydaily
Browse files Browse the repository at this point in the history
Display daily bugs
  • Loading branch information
dannyparsons authored Apr 18, 2018
2 parents 7666d6e + 0f94ef7 commit 4055aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion instat/dlgDisplayDailyData.vb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Public Class dlgDisplayDailyData
ucrChkSumMissing.SetParameter(New RParameter("summary_count_missing", 6), bNewChangeParameterValue:=True, bNewAddRemoveParameter:=True, strNewValueIfChecked:=Chr(34) & "summary_count_missing" & Chr(34), strNewValueIfUnchecked:=Chr(34) & Chr(34))
ucrChkSumMissing.SetText("N Missing")

lstCheckboxes.AddRange({ucrChkSum, ucrChkMax, ucrChkMin, ucrChkMean, ucrChkMedian, ucrChkIQR})
lstCheckboxes.AddRange({ucrChkSum, ucrChkMax, ucrChkMin, ucrChkMean, ucrChkMedian, ucrChkIQR, ucrChkSumMissing})

ucrChkMissing.SetParameter(ucrInputComboMissing.GetParameter)
ucrChkMissing.AddParameterPresentCondition(True, "Misscode")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ DisplayDaily <- function(Datain,Stations,Variables,option=1,Years,Misscode,Trace
out[dim(out)[1]+1,] <- "____"
out[dim(out)[1],1] <- "STATS"
# temp fix to shorten display name of summary function
outstats[,1][outstats[,1] == "summary_count_missing"] <- "n_missing"
outstats[,1][outstats[,1] == "summary_count_missing"] <- "n_miss"
out <- rbind(out,outstats)

#----------------------------------------------------------#
Expand Down

0 comments on commit 4055aa8

Please sign in to comment.