当前位置: 首页>>代码示例>>C#>>正文


C# IMatrixData.AddCategoryColumns方法代码示例

本文整理汇总了C#中IMatrixData.AddCategoryColumns方法的典型用法代码示例。如果您正苦于以下问题:C# IMatrixData.AddCategoryColumns方法的具体用法?C# IMatrixData.AddCategoryColumns怎么用?C# IMatrixData.AddCategoryColumns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IMatrixData的用法示例。


在下文中一共展示了IMatrixData.AddCategoryColumns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: StringToCategorical

 private static void StringToCategorical(IList<int> colInds, IMatrixData mdata)
 {
     int[] inds = ArrayUtils.Complement(colInds, mdata.StringColumnCount);
     string[] names = ArrayUtils.SubArray(mdata.StringColumnNames, colInds);
     string[] descriptions = ArrayUtils.SubArray(mdata.StringColumnDescriptions, colInds);
     string[][] str = ArrayUtils.SubArray(mdata.StringColumns, colInds);
     string[][][] newCat = new string[str.Length][][];
     for (int j = 0; j < str.Length; j++){
         newCat[j] = new string[str[j].Length][];
         for (int i = 0; i < newCat[j].Length; i++){
             if (str[j][i] == null || str[j][i].Length == 0){
                 newCat[j][i] = new string[0];
             } else{
                 string[] x = str[j][i].Split(';');
                 Array.Sort(x);
                 newCat[j][i] = x;
             }
         }
     }
     mdata.AddCategoryColumns(names, descriptions, newCat);
     mdata.StringColumns = ArrayUtils.SubList(mdata.StringColumns, inds);
     mdata.StringColumnNames = ArrayUtils.SubList(mdata.StringColumnNames, inds);
     mdata.StringColumnDescriptions = ArrayUtils.SubList(mdata.StringColumnDescriptions, inds);
 }
开发者ID:neuhauser,项目名称:perseus-plugins,代码行数:24,代码来源:ChangeColumnType.cs

示例2: NumericToCategorical

 private static void NumericToCategorical(IList<int> colInds, IMatrixData mdata)
 {
     int[] inds = ArrayUtils.Complement(colInds, mdata.NumericColumnCount);
     string[] names = ArrayUtils.SubArray(mdata.NumericColumnNames, colInds);
     string[] descriptions = ArrayUtils.SubArray(mdata.NumericColumnDescriptions, colInds);
     double[][] num = ArrayUtils.SubArray(mdata.NumericColumns, colInds);
     string[][][] newCat = new string[num.Length][][];
     for (int j = 0; j < num.Length; j++){
         newCat[j] = new string[num[j].Length][];
         for (int i = 0; i < newCat[j].Length; i++){
             if (double.IsNaN(num[j][i]) || double.IsInfinity(num[j][i])){
                 newCat[j][i] = new string[0];
             } else{
                 newCat[j][i] = new[]{"" + num[j][i]};
             }
         }
     }
     mdata.AddCategoryColumns(names,descriptions, newCat);
     mdata.NumericColumns = ArrayUtils.SubList(mdata.NumericColumns, inds);
     mdata.NumericColumnNames = ArrayUtils.SubList(mdata.NumericColumnNames, inds);
     mdata.NumericColumnDescriptions = ArrayUtils.SubList(mdata.NumericColumnDescriptions, inds);
 }
开发者ID:neuhauser,项目名称:perseus-plugins,代码行数:22,代码来源:ChangeColumnType.cs


注:本文中的IMatrixData.AddCategoryColumns方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。