@@ -1243,7 +1243,7 @@ public Table concat(Table tableToConcatenate) {
1243
1243
}
1244
1244
1245
1245
/**
1246
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1246
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1247
1247
* using the given functions. This object implements reduce/aggregation operations on a table.
1248
1248
*
1249
1249
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1254,7 +1254,7 @@ public Summarizer summarize(String columName, AggregateFunction<?, ?>... functio
1254
1254
}
1255
1255
1256
1256
/**
1257
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1257
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1258
1258
* using the given functions. This object implements reduce/aggregation operations on a table.
1259
1259
*
1260
1260
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1265,7 +1265,7 @@ public Summarizer summarize(List<String> columnNames, AggregateFunction<?, ?>...
1265
1265
}
1266
1266
1267
1267
/**
1268
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1268
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1269
1269
* using the given functions. This object implements reduce/aggregation operations on a table.
1270
1270
*
1271
1271
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1277,7 +1277,7 @@ public Summarizer summarize(
1277
1277
}
1278
1278
1279
1279
/**
1280
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1280
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1281
1281
* using the given functions. This object implements reduce/aggregation operations on a table.
1282
1282
*
1283
1283
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1289,7 +1289,7 @@ public Summarizer summarize(
1289
1289
}
1290
1290
1291
1291
/**
1292
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1292
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1293
1293
* using the given functions. This object implements reduce/aggregation operations on a table.
1294
1294
*
1295
1295
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1306,7 +1306,7 @@ public Summarizer summarize(
1306
1306
}
1307
1307
1308
1308
/**
1309
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1309
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1310
1310
* using the given functions. This object implements reduce/aggregation operations on a table.
1311
1311
*
1312
1312
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1317,7 +1317,7 @@ public Summarizer summarize(Column<?> numberColumn, AggregateFunction<?, ?>... f
1317
1317
}
1318
1318
1319
1319
/**
1320
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1320
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1321
1321
* using the given functions. This object implements reduce/aggregation operations on a table.
1322
1322
*
1323
1323
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1329,7 +1329,7 @@ public Summarizer summarize(
1329
1329
}
1330
1330
1331
1331
/**
1332
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1332
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1333
1333
* using the given functions. This object implements reduce/aggregation operations on a table.
1334
1334
*
1335
1335
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1344,7 +1344,7 @@ public Summarizer summarize(
1344
1344
}
1345
1345
1346
1346
/**
1347
- * Returns an {@link Summarizer} that can be used to summarize the column with the given name(s)
1347
+ * Returns a {@link Summarizer} that can be used to summarize the column with the given name(s)
1348
1348
* using the given functions. This object implements reduce/aggregation operations on a table.
1349
1349
*
1350
1350
* <p>Summarizer can return the results as a table using the Summarizer:apply() method. Summarizer
@@ -1667,9 +1667,9 @@ private Table transpose(
1667
1667
/**
1668
1668
* Melt implements the 'tidy' melt operation as described in these papers by Hadley Wickham.
1669
1669
*
1670
- * <p>Tidy concepts: {@ see https://www.jstatsoft.org/article/view/v059i10}
1670
+ * <p>Tidy concepts: see https://www.jstatsoft.org/article/view/v059i10
1671
1671
*
1672
- * <p>Cast function details: {@ see https://www.jstatsoft.org/article/view/v021i12}
1672
+ * <p>Cast function details: see https://www.jstatsoft.org/article/view/v021i12
1673
1673
*
1674
1674
* <p>In short, melt turns columns into rows, but in a particular way. Used with the cast method,
1675
1675
* it can help make data tidy. In a tidy dataset, every variable is a column and every observation
@@ -1794,9 +1794,9 @@ private void writeIdVariables(List<String> idVariables, Table result, Row row) {
1794
1794
* <p>Variable columns are returned in an arbitrary order. Use {@link #reorderColumns(String...)}
1795
1795
* if column order is important.
1796
1796
*
1797
- * <p>Tidy concepts: {@ see https://www.jstatsoft.org/article/view/v059i10}
1797
+ * <p>Tidy concepts: see https://www.jstatsoft.org/article/view/v059i10
1798
1798
*
1799
- * <p>Cast function details: {@ see https://www.jstatsoft.org/article/view/v021i12}
1799
+ * <p>Cast function details: see https://www.jstatsoft.org/article/view/v021i12
1800
1800
*/
1801
1801
public Table cast () {
1802
1802
StringColumn variableNames = stringColumn (MELT_VARIABLE_COLUMN_NAME );
0 commit comments