From b37b37e9384f2aed60f67de7a38edd0f8ce4c993 Mon Sep 17 00:00:00 2001 From: YoungKrug <31873199+YoungKrug@users.noreply.github.com> Date: Fri, 26 Apr 2024 12:06:54 -0400 Subject: [PATCH] Changing documentation --- R/Cluster.R | 2 +- man/OptiCluster.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/Cluster.R b/R/Cluster.R index fe5617b..2679ac4 100644 --- a/R/Cluster.R +++ b/R/Cluster.R @@ -12,7 +12,7 @@ #' @param param1 A Sparse Matrix. #' @param param2 A cutoff value #' @param param3 The number of iterations -#' @return A dataframe of the clusters. +#' @return A data.frame of the clusters. OptiCluster <- function(sparse_matrix, cutoff, iterations) { indexOneList <- sparse_matrix@i diff --git a/man/OptiCluster.Rd b/man/OptiCluster.Rd index 3407a5e..f01eda0 100644 --- a/man/OptiCluster.Rd +++ b/man/OptiCluster.Rd @@ -14,7 +14,7 @@ OptiCluster(sparse_matrix, cutoff, iterations) \item{param3}{The number of iterations} } \value{ -A dataframe of the clusters. +A data.frame of the clusters. } \description{ Detailed description of the function.