From 2d5f2dccd7756d1edeee37b3805e3c4fb2024b62 Mon Sep 17 00:00:00 2001 From: Cesaire Joris Kuete Fouodo Date: Fri, 15 Nov 2024 09:21:46 +0100 Subject: [PATCH] Fix docu --- .covrignore | 4 ++-- DESCRIPTION | 4 ++-- R/Training.R | 2 +- man/Training.Rd | 2 +- man/createTestLayer.Rd | 2 +- man/createTesting.Rd | 2 +- man/createTrainLayer.Rd | 2 +- man/createTrainMetaLayer.Rd | 2 +- man/createTraining.Rd | 2 +- man/fusemlr.Rd | 2 +- man/predict.Training.Rd | 2 +- man/upsetplot.Rd | 2 +- man/varSelection.Rd | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.covrignore b/.covrignore index 3488601..445e946 100644 --- a/.covrignore +++ b/.covrignore @@ -4,5 +4,5 @@ ./R/PredictLayer.R ./R/PredictMetaLayer.R ./R/Predicting.R -./R/createTraining.R -./R/createTesting.R \ No newline at end of file +./R/trainingFunctions.R +./R/testingFunctions.R \ No newline at end of file diff --git a/DESCRIPTION b/DESCRIPTION index 5693139..825536b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -44,10 +44,10 @@ Collate: 'TrainMetaLayer.R' 'Training.R' 'VarSel.R' - 'createTesting.R' - 'createTraining.R' 'entities.R' 'weightedMeanLearner.R' 'predict.bestSpecificLearner.R' 'predict.weightedMeanLearner.R' + 'testingFunctions.R' + 'trainingFunctions.R' VignetteBuilder: knitr diff --git a/R/Training.R b/R/Training.R index c94161d..a65658f 100644 --- a/R/Training.R +++ b/R/Training.R @@ -1,7 +1,7 @@ #' @title Training Class #' #' @description -#' This class is the basic class of the present package. An object from this class +#' This is one of the two primary classes of fuseMLR. An object from this class #' is designed to contain multiple training layers, but only one meta training layer. #' #' The Training class is structured as followed: diff --git a/man/Training.Rd b/man/Training.Rd index 6befbf1..b66b239 100644 --- a/man/Training.Rd +++ b/man/Training.Rd @@ -4,7 +4,7 @@ \alias{Training} \title{Training Class} \description{ -This class is the basic class of the present package. An object from this class +This is one of the two primary classes of fuseMLR. An object from this class is designed to contain multiple training layers, but only one meta training layer. The Training class is structured as followed: diff --git a/man/createTestLayer.Rd b/man/createTestLayer.Rd index b7c2744..86df78f 100644 --- a/man/createTestLayer.Rd +++ b/man/createTestLayer.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTesting.R +% Please edit documentation in R/testingFunctions.R \name{createTestLayer} \alias{createTestLayer} \title{createTestLayer} diff --git a/man/createTesting.Rd b/man/createTesting.Rd index b0f5f6f..c3313fe 100644 --- a/man/createTesting.Rd +++ b/man/createTesting.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTesting.R +% Please edit documentation in R/testingFunctions.R \name{createTesting} \alias{createTesting} \title{createTesting} diff --git a/man/createTrainLayer.Rd b/man/createTrainLayer.Rd index f00fef7..5bef9a5 100644 --- a/man/createTrainLayer.Rd +++ b/man/createTrainLayer.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{createTrainLayer} \alias{createTrainLayer} \title{createTrainLayer} diff --git a/man/createTrainMetaLayer.Rd b/man/createTrainMetaLayer.Rd index dcbfa66..82170aa 100644 --- a/man/createTrainMetaLayer.Rd +++ b/man/createTrainMetaLayer.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{createTrainMetaLayer} \alias{createTrainMetaLayer} \title{createTrainMetaLayer} diff --git a/man/createTraining.Rd b/man/createTraining.Rd index a64a1a7..53050db 100644 --- a/man/createTraining.Rd +++ b/man/createTraining.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{createTraining} \alias{createTraining} \title{createTraining} diff --git a/man/fusemlr.Rd b/man/fusemlr.Rd index 54053df..107011e 100644 --- a/man/fusemlr.Rd +++ b/man/fusemlr.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{fusemlr} \alias{fusemlr} \title{fusemlr} diff --git a/man/predict.Training.Rd b/man/predict.Training.Rd index 1ef2e2d..f3dece4 100644 --- a/man/predict.Training.Rd +++ b/man/predict.Training.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{predict.Training} \alias{predict.Training} \title{predict.Training} diff --git a/man/upsetplot.Rd b/man/upsetplot.Rd index 1f6544b..862fd2d 100644 --- a/man/upsetplot.Rd +++ b/man/upsetplot.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{upsetplot} \alias{upsetplot} \title{upsetplot} diff --git a/man/varSelection.Rd b/man/varSelection.Rd index da37028..92e64f4 100644 --- a/man/varSelection.Rd +++ b/man/varSelection.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/createTraining.R +% Please edit documentation in R/trainingFunctions.R \name{varSelection} \alias{varSelection} \title{varSelection}