public double Variance(PmlAttribute att) { return(Impl.variance(att.Impl)); }
public double MeanOrMode(PmlAttribute att) { return(Impl.meanOrMode(att.Impl)); }
public double KthSmallestValue(PmlAttribute att, int k) { return(Impl.kthSmallestValue(att.Impl, k)); }
public void SetClass(PmlAttribute att) { Impl.setClass(att.Impl); }
public void RenameAttributeValue(PmlAttribute att, string val, string name) { Impl.renameAttributeValue(att.Impl, val, name); }
public void DeleteWithMissing(PmlAttribute att) { Impl.deleteWithMissing(att.Impl); }
public int NumDistinctValues(PmlAttribute att) { return(Impl.numDistinctValues(att.Impl)); }
public void InsertAttributeAt(PmlAttribute att, int position) { Impl.insertAttributeAt(att.Impl, position); }
public void Sort(PmlAttribute att) { Impl.sort(att.Impl); }
public static string TypeToString(PmlAttribute att) { return(Attribute.typeToString(att.Impl)); }
public int AddStringValue(PmlAttribute src, int index) { return(Impl.addStringValue(src.Impl, index)); }