示例#1
0
 public double Variance(PmlAttribute att)
 {
     return(Impl.variance(att.Impl));
 }
示例#2
0
 public double MeanOrMode(PmlAttribute att)
 {
     return(Impl.meanOrMode(att.Impl));
 }
示例#3
0
 public double KthSmallestValue(PmlAttribute att, int k)
 {
     return(Impl.kthSmallestValue(att.Impl, k));
 }
示例#4
0
 public void SetClass(PmlAttribute att)
 {
     Impl.setClass(att.Impl);
 }
示例#5
0
 public void RenameAttributeValue(PmlAttribute att, string val, string name)
 {
     Impl.renameAttributeValue(att.Impl, val, name);
 }
示例#6
0
 public void DeleteWithMissing(PmlAttribute att)
 {
     Impl.deleteWithMissing(att.Impl);
 }
示例#7
0
 public int NumDistinctValues(PmlAttribute att)
 {
     return(Impl.numDistinctValues(att.Impl));
 }
示例#8
0
 public void InsertAttributeAt(PmlAttribute att, int position)
 {
     Impl.insertAttributeAt(att.Impl, position);
 }
示例#9
0
 public void Sort(PmlAttribute att)
 {
     Impl.sort(att.Impl);
 }
示例#10
0
 public static string TypeToString(PmlAttribute att)
 {
     return(Attribute.typeToString(att.Impl));
 }
示例#11
0
 public int AddStringValue(PmlAttribute src, int index)
 {
     return(Impl.addStringValue(src.Impl, index));
 }