Skip to content

Commit

Permalink
Change method parameter from Boolean to boolean (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccleva authored Jan 3, 2025
1 parent 6daa05a commit 5efb947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/tech/tablesaw/api/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -1658,14 +1658,14 @@ private Table transpose(
* <p>This kind of structure often makes for a good intermediate format for performing subsequent
* transformations. It is especially useful when combined with the {@link #cast()} operation
*
* @param idVariables A list of column names intended to be used as identifiers. In he example,
* @param idVariables A list of column names intended to be used as identifiers. In the example,
* only patient_id would be an identifier
* @param measuredVariables A list of columns intended to be used as measured variables. All
* columns must have the same type
* @param dropMissing drop any row where the value is missing
*/
public Table melt(
List<String> idVariables, List<NumericColumn<?>> measuredVariables, Boolean dropMissing) {
List<String> idVariables, List<NumericColumn<?>> measuredVariables, boolean dropMissing) {

Table result = Table.create(name);
for (String idColName : idVariables) {
Expand Down

0 comments on commit 5efb947

Please sign in to comment.