diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-02 18:59:20 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-02 18:59:20 +0200 |
commit | a344f3d937e6984350b06b9ee6aa7da48b757961 (patch) | |
tree | 20e55757aaa150af38d420d573d269f7dd99397d /backend/api | |
parent | 61d8c3e8a88d0787f34b03fcd4fe2b533c571e1b (diff) |
Novi statistički podaci su dodati na backend
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; } + } } |