本文整理汇总了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);
}
示例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);
}