File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/java/tech/tablesaw/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1658,14 +1658,14 @@ private Table transpose(
16581658 * <p>This kind of structure often makes for a good intermediate format for performing subsequent
16591659 * transformations. It is especially useful when combined with the {@link #cast()} operation
16601660 *
1661- * @param idVariables A list of column names intended to be used as identifiers. In he example,
1661+ * @param idVariables A list of column names intended to be used as identifiers. In the example,
16621662 * only patient_id would be an identifier
16631663 * @param measuredVariables A list of columns intended to be used as measured variables. All
16641664 * columns must have the same type
16651665 * @param dropMissing drop any row where the value is missing
16661666 */
16671667 public Table melt (
1668- List <String > idVariables , List <NumericColumn <?>> measuredVariables , Boolean dropMissing ) {
1668+ List <String > idVariables , List <NumericColumn <?>> measuredVariables , boolean dropMissing ) {
16691669
16701670 Table result = Table .create (name );
16711671 for (String idColName : idVariables ) {
You can’t perform that action at this time.
0 commit comments