📄 instance.html
字号:
double value)</PRE><DL><DD>Sets a specific value in the instance to the given value (internal floating-point format). Performs a deep copy of the vector of attribute values before the value is set.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>attIndex</CODE> - the attribute's index<DD><CODE>value</CODE> - the new attribute value (If the corresponding attribute is nominal (or a string) then this is the new value's index as a double).</DL></DD></DL><HR><A NAME="setValueSparse(int, double)"><!-- --></A><H3>setValueSparse</H3><PRE>public void <B>setValueSparse</B>(int indexOfIndex, double value)</PRE><DL><DD>Sets a specific value in the instance to the given value (internal floating-point format). Performs a deep copy of the vector of attribute values before the value is set. Does exactly the same thing as setValue().<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>indexOfIndex</CODE> - the index of the attribute's index<DD><CODE>value</CODE> - the new attribute value (If the corresponding attribute is nominal (or a string) then this is the new value's index as a double).</DL></DD></DL><HR><A NAME="setValue(int, java.lang.String)"><!-- --></A><H3>setValue</H3><PRE>public final void <B>setValue</B>(int attIndex, java.lang.String value)</PRE><DL><DD>Sets a value of a nominal or string attribute to the given value. Performs a deep copy of the vector of attribute values before the value is set.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>attIndex</CODE> - the attribute's index<DD><CODE>value</CODE> - the new attribute value (If the attribute is a string attribute and the value can't be found, the value is added to the attribute).<DT><B>Throws:</B><DD><CODE><A HREF="../../weka/core/UnassignedDatasetException.html" title="class in weka.core">UnassignedDatasetException</A></CODE> - if the dataset is not set<DD><CODE>java.lang.IllegalArgumentException</CODE> - if the selected attribute is not nominal or a string, or the supplied value couldn't be found for a nominal attribute</DL></DD></DL><HR><A NAME="setValue(weka.core.Attribute, double)"><!-- --></A><H3>setValue</H3><PRE>public final void <B>setValue</B>(<A HREF="../../weka/core/Attribute.html" title="class in weka.core">Attribute</A> att, double value)</PRE><DL><DD>Sets a specific value in the instance to the given value (internal floating-point format). Performs a deep copy of the vector of attribute values before the value is set, so if you are planning on calling setValue many times it may be faster to create a new instance using toDoubleArray. The given attribute has to belong to a dataset.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>att</CODE> - the attribute<DD><CODE>value</CODE> - the new attribute value (If the corresponding attribute is nominal (or a string) then this is the new value's index as a double).</DL></DD></DL><HR><A NAME="setValue(weka.core.Attribute, java.lang.String)"><!-- --></A><H3>setValue</H3><PRE>public final void <B>setValue</B>(<A HREF="../../weka/core/Attribute.html" title="class in weka.core">Attribute</A> att, java.lang.String value)</PRE><DL><DD>Sets a value of an nominal or string attribute to the given value. Performs a deep copy of the vector of attribute values before the value is set, so if you are planning on calling setValue many times it may be faster to create a new instance using toDoubleArray. The given attribute has to belong to a dataset.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>att</CODE> - the attribute<DD><CODE>value</CODE> - the new attribute value (If the attribute is a string attribute and the value can't be found, the value is added to the attribute).<DT><B>Throws:</B><DD><CODE>java.lang.IllegalArgumentException</CODE> - if the the attribute is not nominal or a string, or the value couldn't be found for a nominal attribute</DL></DD></DL><HR><A NAME="setWeight(double)"><!-- --></A><H3>setWeight</H3><PRE>public final void <B>setWeight</B>(double weight)</PRE><DL><DD>Sets the weight of an instance.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>weight</CODE> - the weight</DL></DD></DL><HR><A NAME="stringValue(int)"><!-- --></A><H3>stringValue</H3><PRE>public final java.lang.String <B>stringValue</B>(int attIndex)</PRE><DL><DD>Returns the string value of a nominal, string, or date attribute for the instance.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>attIndex</CODE> - the attribute's index<DT><B>Returns:</B><DD>the value as a string<DT><B>Throws:</B><DD><CODE>java.lang.IllegalArgumentException</CODE> - if the attribute is not a nominal, string, or date attribute.<DD><CODE><A HREF="../../weka/core/UnassignedDatasetException.html" title="class in weka.core">UnassignedDatasetException</A></CODE> - if the instance doesn't belong to a dataset.</DL></DD></DL><HR><A NAME="stringValue(weka.core.Attribute)"><!-- --></A><H3>stringValue</H3><PRE>public final java.lang.String <B>stringValue</B>(<A HREF="../../weka/core/Attribute.html" title="class in weka.core">Attribute</A> att)</PRE><DL><DD>Returns the string value of a nominal, string, or date attribute for the instance.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>att</CODE> - the attribute<DT><B>Returns:</B><DD>the value as a string<DT><B>Throws:</B><DD><CODE>java.lang.IllegalArgumentException</CODE> - if the attribute is not a nominal, string, or date attribute.<DD><CODE><A HREF="../../weka/core/UnassignedDatasetException.html" title="class in weka.core">UnassignedDatasetException</A></CODE> - if the instance doesn't belong to a dataset.</DL></DD></DL><HR><A NAME="toDoubleArray()"><!-- --></A><H3>toDoubleArray</H3><PRE>public double[] <B>toDoubleArray</B>()</PRE><DL><DD>Returns the values of each attribute as an array of doubles.<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>an array containing all the instance attribute values</DL></DD></DL><HR><A NAME="toString()"><!-- --></A><H3>toString</H3><PRE>public java.lang.String <B>toString</B>()</PRE><DL><DD>Returns the description of one instance. If the instance doesn't have access to a dataset, it returns the internal floating-point values. Quotes string values that contain whitespace characters.<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the instance's description as a string</DL></DD></DL><HR><A NAME="toString(int)"><!-- --></A><H3>toString</H3><PRE>public final java.lang.String <B>toString</B>(int attIndex)</PRE><DL><DD>Returns the description of one value of the instance as a string. If the instance doesn't have access to a dataset, it returns the internal floating-point value. Quotes string values that contain whitespace characters, or if they are a question mark.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>attIndex</CODE> - the attribute's index<DT><B>Returns:</B><DD>the value's description as a string</DL></DD></DL><HR><A NAME="toString(weka.core.Attribute)"><!-- --></A><H3>toString</H3><PRE>public final java.lang.String <B>toString</B>(<A HREF="../../weka/core/Attribute.html" title="class in weka.core">Attribute</A> att)</PRE><DL><DD>Returns the description of one value of the instance as a string. If the instance doesn't have access to a dataset it returns the internal floating-point value. Quotes string values that contain whitespace characters, or if they are a question mark. The given attribute has to belong to a dataset.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>att</CODE> - the attribute<DT><B>Returns:</B><DD>the value's description as a string</DL></DD></DL><HR><A NAME="value(int)"><!-- --></A><H3>value</H3><PRE>public double <B>value</B>(int attIndex)</PRE><DL><DD>Returns an instance's attribute value in internal format.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>attIndex</CODE> - the attribute's index<DT><B>Returns:</B><DD>the specified value as a double (If the corresponding attribute is nominal (or a string) then it returns the value's index as a double).</DL></DD></DL><HR><A NAME="valueSparse(int)"><!-- --></A><H3>valueSparse</H3><PRE>public double <B>valueSparse</B>(int indexOfIndex)</PRE><DL><DD>Returns an instance's attribute value in internal format. Does exactly the same thing as value() if applied to an Instance.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>indexOfIndex</CODE> - the index of the attribute's index<DT><B>Returns:</B><DD>the specified value as a double (If the corresponding attribute is nominal (or a string) then it returns the value's index as a double).</DL></DD></DL><HR><A NAME="value(weka.core.Attribute)"><!-- --></A><H3>value</H3><PRE>public double <B>value</B>(<A HREF="../../weka/core/Attribute.html" title="class in weka.core">Attribute</A> att)</PRE><DL><DD>Returns an instance's attribute value in internal format. The given attribute has to belong to a dataset.<P><DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>att</CODE> - the attribute<DT><B>Returns:</B><DD>the specified value as a double (If the corresponding attribute is nominal (or a string) then it returns the value's index as a double).</DL></DD></DL><HR><A NAME="weight()"><!-- --></A><H3>weight</H3><PRE>public final double <B>weight</B>()</PRE><DL><DD>Returns the instance's weight.<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the instance's weight as a double</DL></DD></DL><HR><A NAME="main(java.lang.String[])"><!-- --></A><H3>main</H3><PRE>public static void <B>main</B>(java.lang.String[] options)</PRE><DL><DD>Main method for testing this class.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../Tutorial.pdf"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="http://www.cs.waikato.ac.nz/ml/weka/index.html"><FONT CLASS="NavBarFont1"><B>Weka's home</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../weka/core/FastVector.FastVectorEnumeration.html" title="class in weka.core"><B>PREV CLASS</B></A> <A HREF="../../weka/core/Instances.html" title="class in weka.core"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html" target="_top"><B>FRAMES</B></A> <A HREF="Instance.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--></SCRIPT><NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -