forked from OHDSI/WhiteRabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'numeric-stats-and-unique-stats'
- Loading branch information
Showing
5 changed files
with
223 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
rabbit-core/src/main/java/org/ohdsi/utilities/ScanFieldName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package org.ohdsi.utilities; | ||
|
||
public interface ScanFieldName { | ||
String TABLE = "Table"; | ||
String FIELD = "Field"; | ||
String TYPE = "Type"; | ||
String MAX_LENGTH = "Max length"; | ||
String N_ROWS = "N rows"; | ||
String N_ROWS_CHECKED = "N rows checked"; | ||
String FRACTION_EMPTY = "Fraction empty"; | ||
String AVERAGE = "Average"; | ||
String STDEV = "Standard Deviation"; | ||
String MIN = "Min"; | ||
String Q1 = "25%"; | ||
String Q2 = "Median"; | ||
String Q3 = "75%"; | ||
String MAX = "Max"; | ||
} | ||
|
||
|
||
//public enum ScanField { | ||
// TABLE = "Table"; | ||
// FIELD = "Field"; | ||
// TYPE = "Type"; | ||
// MAX_LENGTH = "Max length"; | ||
// N_ROWS = "N rows"; | ||
// N_ROWS_CHECKED = "N rows checked"; | ||
// FRACTION_EMPTY = "Fraction empty"; | ||
// AVERAGE = "Average"; | ||
// STDEV = "Standard Deviation"; | ||
// MIN = "Min"; | ||
// Q1 = "25%"; | ||
// Q2 = "Median"; | ||
// Q3 = "75%"; | ||
// MAX = "Max%"; | ||
// | ||
// private final String fieldName; | ||
//} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.