- Timestamp:
- 04/26/16 13:03:39 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/ManipulationView.cs
r12676 r13796 155 155 int count = filteredColumns.Count; 156 156 int columnCount = Content.FilterLogic.PreprocessingData.Columns; 157 lblPreviewColumnsInfo.Text = count + " column" + (count > 1 || count == 0 ? "s" : "") + " of " + columnCount + " (" + string.Format("{0:F2}%", 100d / columnCount * count) + ") were detected with more than " + txtDeleteColumnsInfo.Text + "% missing values."; 158 if (count > 0) { 157 lblPreviewColumnsInfo.Text = string.Format("{0} column{1} of {2} ({3}) were detected with more than {4}% missing values.", count, (count > 1 || count == 0 ? "s" : ""), columnCount, string.Format("{0:F2}%", 100d / columnCount * count), txtDeleteColumnsInfo.Text); 158 159 //only display column names more than 0 and fewer than 50 are affected 160 if (count > 0 && count < 50) { 159 161 StringBuilder sb = new StringBuilder(); 160 162 sb.Append(Environment.NewLine); … … 170 172 171 173 lblPreviewColumnsInfo.Text += sb.ToString(); 172 } else {173 btnApply.Enabled = false; 174 }174 } 175 176 btnApply.Enabled = count > 0; 175 177 } else { 176 178 lblPreviewColumnsInfo.Text = "Preview not possible yet - please input the limit above."; … … 184 186 int count = filteredColumns.Count; 185 187 int columnCount = Content.FilterLogic.PreprocessingData.Columns; 186 lblPreviewColumnsVariance.Text = count + " column" + (count > 1 || count == 0 ? "s" : "") + " of " + columnCount + " (" + string.Format("{0:F2}%", 100d / columnCount * count) + ") were detected with a variance smaller than " + txtDeleteColumnsVariance.Text + "."; 187 if (count > 0) { 188 lblPreviewColumnsVariance.Text = string.Format("{0} column{1} of {2} ({3}) were detected with a variance smaller than {4}.", count, (count > 1 || count == 0 ? "s" : ""), columnCount, string.Format("{0:F2}%", 100d / columnCount * count), txtDeleteColumnsVariance.Text); 189 190 //only display column names more than 0 and fewer than 50 are affected 191 if (count > 0 && count < 50) { 188 192 StringBuilder sb = new StringBuilder(); 189 193 sb.Append(Environment.NewLine); … … 199 203 200 204 lblPreviewColumnsVariance.Text += sb.ToString(); 201 } else {202 btnApply.Enabled = false; 203 }205 } 206 207 btnApply.Enabled = count > 0; 204 208 } else { 205 209 lblPreviewColumnsVariance.Text = "Preview not possible yet - please input the limit for the variance above.";
Note: See TracChangeset
for help on using the changeset viewer.