|
8 | 8 | #' @param search_dist Search-distance parameter. |
9 | 9 | #' @param min_points Minimum point density needed to define 'core' point in cluster. |
10 | 10 | #' @param wd Changes the working directory. |
11 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 11 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
12 | 12 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 13 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
13 | 14 | #' |
14 | 15 | #' @return Returns the tool text outputs. |
15 | 16 | #' @export |
@@ -51,8 +52,9 @@ wbt_dbscan <- function(inputs, output, scaling="Normalize", search_dist=0.01, mi |
51 | 52 | #' @param initialize How to initialize cluster centres?. |
52 | 53 | #' @param min_class_size Minimum class size, in pixels. |
53 | 54 | #' @param wd Changes the working directory. |
54 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 55 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
55 | 56 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 57 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
56 | 58 | #' |
57 | 59 | #' @return Returns the tool text outputs. |
58 | 60 | #' @export |
@@ -101,8 +103,9 @@ wbt_k_means_clustering <- function(inputs, output, classes, out_html=NULL, max_i |
101 | 103 | #' @param clip Perform training data clipping to remove outlier pixels?. |
102 | 104 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
103 | 105 | #' @param wd Changes the working directory. |
104 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 106 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
105 | 107 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 108 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
106 | 109 | #' |
107 | 110 | #' @return Returns the tool text outputs. |
108 | 111 | #' @export |
@@ -149,8 +152,9 @@ wbt_knn_classification <- function(inputs, training, field, output, scaling="Nor |
149 | 152 | #' @param weight Use distance weighting?. |
150 | 153 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
151 | 154 | #' @param wd Changes the working directory. |
152 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 155 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
153 | 156 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 157 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
154 | 158 | #' |
155 | 159 | #' @return Returns the tool text outputs. |
156 | 160 | #' @export |
@@ -197,8 +201,9 @@ wbt_knn_regression <- function(inputs, training, field, scaling="Normalize", out |
197 | 201 | #' @param output Name of the output raster file. |
198 | 202 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
199 | 203 | #' @param wd Changes the working directory. |
200 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 204 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
201 | 205 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 206 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
202 | 207 | #' |
203 | 208 | #' @return Returns the tool text outputs. |
204 | 209 | #' @export |
@@ -240,8 +245,9 @@ wbt_logistic_regression <- function(inputs, training, field, scaling="Normalize" |
240 | 245 | #' @param max_iterations Maximum number of iterations. |
241 | 246 | #' @param class_change Minimum percent of cells changed between iterations before completion. |
242 | 247 | #' @param wd Changes the working directory. |
243 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 248 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
244 | 249 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 250 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
245 | 251 | #' |
246 | 252 | #' @return Returns the tool text outputs. |
247 | 253 | #' @export |
@@ -290,8 +296,9 @@ wbt_modified_k_means_clustering <- function(inputs, output, out_html=NULL, start |
290 | 296 | #' @param min_samples_split The minimum number of samples required to split an internal node. |
291 | 297 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
292 | 298 | #' @param wd Changes the working directory. |
293 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 299 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
294 | 300 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 301 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
295 | 302 | #' |
296 | 303 | #' @return Returns the tool text outputs. |
297 | 304 | #' @export |
@@ -343,8 +350,9 @@ wbt_random_forest_classification <- function(inputs, training, field, output=NUL |
343 | 350 | #' @param min_samples_split The minimum number of samples required to split an internal node. |
344 | 351 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
345 | 352 | #' @param wd Changes the working directory. |
346 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 353 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
347 | 354 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 355 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
348 | 356 | #' |
349 | 357 | #' @return Returns the tool text outputs. |
350 | 358 | #' @export |
@@ -394,8 +402,9 @@ wbt_random_forest_regression <- function(inputs, training, field, output=NULL, n |
394 | 402 | #' @param tolerance The tolerance parameter used in determining the stopping condition. |
395 | 403 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
396 | 404 | #' @param wd Changes the working directory. |
397 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 405 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
398 | 406 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 407 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
399 | 408 | #' |
400 | 409 | #' @return Returns the tool text outputs. |
401 | 410 | #' @export |
@@ -448,8 +457,9 @@ wbt_svm_classification <- function(inputs, training, field, scaling="Normalize", |
448 | 457 | #' @param gamma Gamma parameter used in setting the RBF (Gaussian) kernel function. |
449 | 458 | #' @param test_proportion The proportion of the dataset to include in the test split; default is 0.2. |
450 | 459 | #' @param wd Changes the working directory. |
451 | | -#' @param verbose_mode Sets verbose mode. If verbose mode is False, tools will not print output messages. |
| 460 | +#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. |
452 | 461 | #' @param compress_rasters Sets the flag used by WhiteboxTools to determine whether to use compression for output rasters. |
| 462 | +#' @param command_only Return command that would be executed by `system()` rather than running tool. |
453 | 463 | #' |
454 | 464 | #' @return Returns the tool text outputs. |
455 | 465 | #' @export |
|
0 commit comments