...rename all function with dot to underscore
replace dataset with DatasetExperiment
... | ... |
@@ -1,12 +1 @@ |
1 |
-#' Model prediction |
|
2 |
-#' |
|
3 |
-#' Apply a model using the input dataset. Assumes the model is trained |
|
4 |
-#' first. |
|
5 |
-#' @param M a model object |
|
6 |
-#' @param D a dataset object |
|
7 |
-#' @return Returns a modified model object |
|
8 |
-#' @rdname predict |
|
9 |
-#' @examples |
|
10 |
-#' M = example_model() |
|
11 |
-#' M = model.predict(M,iris_dataset()) |
|
12 |
-#' |
|
1 |
+#' @rdname model.predict |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,13 @@ |
1 |
+#' Model prediction |
|
2 |
+#' |
|
3 |
+#' Apply a model using the input dataset. Assumes the model is trained |
|
4 |
+#' first. |
|
5 |
+#' @param M a model object |
|
6 |
+#' @param D a dataset object |
|
7 |
+#' @return Returns a modified model object |
|
8 |
+#' @rdname predict |
|
9 |
+#' @export |
|
10 |
+#' @examples |
|
11 |
+#' M = example_model() |
|
12 |
+#' M = model.predict(M,iris_dataset()) |
|
13 |
+#' |