diff options
Diffstat (limited to 'backend/api')
-rw-r--r-- | backend/api/api/Models/ColumnInfo.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/backend/api/api/Models/ColumnInfo.cs b/backend/api/api/Models/ColumnInfo.cs index be3c7251..f2cae104 100644 --- a/backend/api/api/Models/ColumnInfo.cs +++ b/backend/api/api/Models/ColumnInfo.cs @@ -4,7 +4,7 @@ { public ColumnInfo() { } - public ColumnInfo(string columnName, string columnType, bool isNumber, int numNulls, float mean, float min, float max, float median, string[] uniqueValues) + public ColumnInfo(string columnName, string columnType, bool isNumber, int numNulls, float mean, float min, float max, float median,float q1,float q3, string[] uniqueValues, int[]uniqueValuesCount, float[] uniqueValuesPercent) { this.columnName = columnName; this.columnType = columnType; @@ -13,8 +13,12 @@ this.mean = mean; this.min = min; this.max = max; + this.q1 = q1; + this.q3 = q3; this.median = median; this.uniqueValues = uniqueValues; + this.uniqueValuesPercent = uniqueValuesPercent; + this.uniqueValuesCount = uniqueValuesCount; } public string columnName { get; set; } @@ -25,7 +29,13 @@ public float min { get; set; } public float max { get; set; } public float median { get; set; } + public float q1 { get; set; } + public float q3 { get; set; } + public string[] uniqueValues { get; set; } + public int[] uniqueValuesCount { get; set; } + public float[] uniqueValuesPercent { get; set; } + } } |