Skip to content

Commit

Permalink
Try removing just NA
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Jan 30, 2024
1 parent b3f9af8 commit 8b8bb5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/tech/tablesaw/io/TypeUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class TypeUtils {
// No default missing indicators
// TODO: Allow this to be configurable?
public static final ImmutableList<String> MISSING_INDICATORS =
ImmutableList.of(missingInd1, missingInd2);
ImmutableList.of(missingInd1, missingInd2, missingInd4, missingInd5);

/** Private constructor to prevent instantiation */
private TypeUtils() {}
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/java/tech/tablesaw/io/csv/CsvReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ void testWithMissingValue2() throws IOException {

Table t = Table.read().csv("../data/missing_values2.csv");
assertEquals(1, t.stringColumn(0).countMissing());
assertEquals(0, t.numberColumn(1).countMissing());
assertEquals(1, t.numberColumn(1).countMissing());
assertEquals(0, t.numberColumn(2).countMissing());
}

Expand Down

0 comments on commit 8b8bb5d

Please sign in to comment.