Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalis95 committed Jan 10, 2025
1 parent 8e95399 commit aec89e4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions instat/ucrReceiverMultiple.vb
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,7 @@ Public Class ucrReceiverMultiple
If bIsCategoricalNumeric Then
' logical can be considered as both categorical or numeric so should be dealt with on individual dialogs
For i As Integer = 0 To strDataTypes.Count - 1
If strDataTypes(i).Contains("factor") OrElse strDataTypes(i).Contains("character") Then
strDataTypes(i) = "categorical"
ElseIf strDataTypes(i).Contains("ordered") Then
If strDataTypes(i).Contains("factor") OrElse strDataTypes(i).Contains("character") OrElse strDataTypes(i).Contains("ordered") Then
strDataTypes(i) = "categorical"
ElseIf Not strDataTypes(i).Contains("logical") Then
strDataTypes(i) = "numeric"
Expand Down

0 comments on commit aec89e4

Please sign in to comment.