Skip to content

Commit

Permalink
Fix 2774
Browse files Browse the repository at this point in the history
  • Loading branch information
JTPetter committed Nov 19, 2024
1 parent 493d766 commit 15391f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions R/rareEventCharts.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ rareEventCharts <- function(jaspResults, dataset, options) {
dataset <- .readDataSetToEnd(columns.as.factor = factorVariables, columns.as.numeric = numericVariables)
}

# remove NA
dataset <- na.omit(dataset)


# Checking for errors in the dataset
.hasErrors(dataset, type = c('infinity'),
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/rareEventCharts.qml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Form
{
name: "tChart"
label: qsTr("T chart")
checked: true
checked: false

DropDown
{
Expand Down

0 comments on commit 15391f3

Please sign in to comment.