From 057852f33e577e68a1500e8024dd3f3042532a38 Mon Sep 17 00:00:00 2001 From: John Kennedy Date: Thu, 30 May 2024 00:41:05 +0100 Subject: [PATCH] Correcting typos found in html diagnosis report, and if also detected in other files. Job Informations > Job Information. Other levles > Other levels. Recommend > Recommendation. Distirubution > Distribution. Files in dlookr/docs/articles/ were not updated. --- R/html_diagnose.R | 12 ++++++------ R/report.R | 12 ++++++------ R/report_tbl_dbi.R | 8 ++++---- README.Rmd | 12 ++++++------ README.md | 12 ++++++------ docs/index.html | 12 ++++++------ docs/reference/diagnose_paged_report.data.frame.html | 2 +- docs/reference/diagnose_paged_report.tbl_dbi.html | 2 +- docs/reference/diagnose_web_report.data.frame.html | 2 +- docs/reference/diagnose_web_report.tbl_dbi.html | 2 +- docs/reference/eda_paged_report.data.frame.html | 2 +- docs/reference/eda_paged_report.tbl_dbi.html | 2 +- docs/reference/eda_web_report.data.frame.html | 2 +- docs/reference/eda_web_report.tbl_dbi.html | 2 +- docs/reference/transformation_paged_report.html | 2 +- docs/reference/transformation_web_report.html | 2 +- inst/report/diagnosis_paged_temp.Rmd | 2 +- inst/report/diagnosis_temp.Rmd | 4 ++-- inst/report/eda_paged_temp.Rmd | 2 +- inst/report/eda_temp.Rmd | 2 +- inst/report/transformation_paged_temp.Rmd | 2 +- inst/report/transformation_temp.Rmd | 2 +- man/diagnose_paged_report.data.frame.Rd | 2 +- man/diagnose_paged_report.tbl_dbi.Rd | 2 +- man/diagnose_web_report.data.frame.Rd | 2 +- man/diagnose_web_report.tbl_dbi.Rd | 2 +- man/eda_paged_report.data.frame.Rd | 2 +- man/eda_paged_report.tbl_dbi.Rd | 2 +- man/eda_web_report.data.frame.Rd | 2 +- man/eda_web_report.tbl_dbi.Rd | 2 +- man/transformation_paged_report.Rd | 2 +- man/transformation_web_report.Rd | 2 +- vignettes/EDA.Rmd | 4 ++-- vignettes/diagonosis.Rmd | 4 ++-- vignettes/transformation.Rmd | 4 ++-- 35 files changed, 67 insertions(+), 67 deletions(-) diff --git a/R/html_diagnose.R b/R/html_diagnose.R index ffeb33cd..e8bf1126 100644 --- a/R/html_diagnose.R +++ b/R/html_diagnose.R @@ -60,7 +60,7 @@ html_toprank <- function(.data, variable = NULL, drop_variable = FALSE) { summarise(top_freq = sum(freq), .groups = "drop") %>% mutate(other_freq = N - top_freq) %>% filter(other_freq > 0) %>% - mutate(levels = "Other levles", + mutate(levels = "Other levels", N = N, freq = other_freq, ratio = freq / N, @@ -85,7 +85,7 @@ html_toprank <- function(.data, variable = NULL, drop_variable = FALSE) { # Render a bar chart in the background of the cell bar_style <- function(width = 1, fill = "#e6e6e666", levels = NULL) { fill <- ifelse(levels %in% "Missing", "#cdcdcd99", fill) - fill <- ifelse(levels %in% "Other levles", "#0072bc66", fill) + fill <- ifelse(levels %in% "Other levels", "#0072bc66", fill) position <- paste0(width * 100, "%") image <- sprintf("linear-gradient(90deg, %1$s %2$s, transparent %2$s)", @@ -152,7 +152,7 @@ html_paged_toprank <- function(.data, top = 10, type = "n", variable = NULL, summarise(top_freq = sum(freq), .groups = "drop") %>% mutate(other_freq = N - top_freq) %>% filter(other_freq > 0) %>% - mutate(levels = "Other levles", + mutate(levels = "Other levels", N = N, freq = other_freq, ratio = freq / N, @@ -540,7 +540,7 @@ html_missing <- function(tab, grade = c("Good" = 0.05, "OK" = 0.1, diagn_missing, defaultColDef = colDef(style = "font-size: 14px;color: hsl(0, 0%, 40%);"), columns = list( - variables = colDef(name = "Variables"), + variables = colDef(name = "Variable"), missing_count = colDef(name = "Missing", width = 120, format = colFormat(separators = TRUE)), @@ -560,7 +560,7 @@ html_missing <- function(tab, grade = c("Good" = 0.05, "OK" = 0.1, tagList(badge, value) }), recommend = colDef( - name = "Recommend" + name = "Recommendation" ) ) ) @@ -730,7 +730,7 @@ html_outlier <- function(.data, theme = c("orange", "blue")[1], height = 400, device = grDevices::png) shiny::tabsetPanel( - shiny::tabPanel("Distirubution", p_outlier, + shiny::tabPanel("Distribution", p_outlier, hr(style = "border-top: 1px solid black;"), style = "padding-top:5px; padding-bottom:25px;"), shiny::tabPanel("Statistics", outlier_df, diff --git a/R/report.R b/R/report.R index abd0fc2c..c0d6ac2b 100644 --- a/R/report.R +++ b/R/report.R @@ -45,7 +45,7 @@ eda_paged_report <- function(.data, ...) { #' \itemize{ #' \item Data Structures #' \item Data Types -#' \item Job Informations +#' \item Job Information #' } #' \item Warnings #' \item Variables @@ -276,7 +276,7 @@ diagnose_web_report.data.frame <- function(.data, output_file = NULL, output_dir #' \item Overview #' \itemize{ #' \item Data Structures -#' \item Job Informations +#' \item Job Information #' \item Warnings #' \item Variables #' } @@ -602,7 +602,7 @@ diagnose_paged_report.data.frame <- function(.data, output_format = c("pdf", "ht #' \itemize{ #' \item Data Structures #' \item Data Types -#' \item Job Informations +#' \item Job Information #' } #' \item Univariate Analysis #' \itemize{ @@ -847,7 +847,7 @@ eda_web_report.data.frame <- function(.data, target = NULL, output_file = NULL, #' \item Overview #' \itemize{ #' \item Data Structures -#' \item Job Informations +#' \item Job Information #' } #' \item Univariate Analysis #' \itemize{ @@ -1141,7 +1141,7 @@ eda_paged_report.data.frame <- function(.data, target = NULL, output_format = c( #' \itemize{ #' \item Data Structures #' \item Data Types -#' \item Job Informations +#' \item Job Information #' } #' \item Imputation #' \itemize{ @@ -1353,7 +1353,7 @@ transformation_web_report <- function(.data, target = NULL, output_file = NULL, #' \item Overview #' \itemize{ #' \item Data Structures -#' \item Job Informations +#' \item Job Information #' } #' \item Imputation #' \itemize{ diff --git a/R/report_tbl_dbi.R b/R/report_tbl_dbi.R index 4fe31ee5..37e59cdd 100644 --- a/R/report_tbl_dbi.R +++ b/R/report_tbl_dbi.R @@ -17,7 +17,7 @@ #' \itemize{ #' \item Data Structures #' \item Data Types -#' \item Job Informations +#' \item Job Information #' } #' \item Warnings #' \item Variables @@ -161,7 +161,7 @@ diagnose_web_report.tbl_dbi <- function(.data, output_file = NULL, output_dir = #' \item Overview #' \itemize{ #' \item Data Structures -#' \item Job Informations +#' \item Job Information #' \item Warnings #' \item Variables #' } @@ -340,7 +340,7 @@ diagnose_paged_report.tbl_dbi <- function(.data, output_format = c("pdf", "html" #' \itemize{ #' \item Data Structures #' \item Data Types -#' \item Job Informations +#' \item Job Information #' } #' \item Univariate Analysis #' \itemize{ @@ -477,7 +477,7 @@ eda_web_report.tbl_dbi <- function(.data, target = NULL, output_file = NULL, #' \item Overview #' \itemize{ #' \item Data Structures -#' \item Job Informations +#' \item Job Information #' } #' \item Univariate Analysis #' \itemize{ diff --git a/README.Rmd b/README.Rmd index b34d94ed..99b59689 100644 --- a/README.Rmd +++ b/README.Rmd @@ -903,7 +903,7 @@ The contents of the report are as follows.: + Data Structures + Data Structures + Data Types - + Job Informations + + Job Information + Warnings + Variables * Missing Values @@ -978,7 +978,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information + Warnings + Variables * Missing Values @@ -1078,7 +1078,7 @@ The contents of the report are as follows.: * Overview + Data Structures + Data Types - + Job Informations + + Job Information * Univariate Analysis + Descriptive Statistics + Normality Test @@ -1145,7 +1145,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information * Univariate Analysis + Descriptive Statistics + Numerical Variables @@ -1236,7 +1236,7 @@ The contents of the report are as follows.: * Overview + Data Structures + Data Types - + Job Informations + + Job Information * Imputation + Missing Values + Outliers @@ -1296,7 +1296,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information * Imputation + Missing Values + Outliers diff --git a/README.md b/README.md index 5b2afae1..b20ad8b1 100644 --- a/README.md +++ b/README.md @@ -2067,7 +2067,7 @@ The contents of the report are as follows.: - Data Structures - Data Structures - Data Types - - Job Informations + - Job Information - Warnings - Variables - Missing Values @@ -2156,7 +2156,7 @@ The contents of the report are as follows.: - Overview - Data Structures - - Job Informations + - Job Information - Warnings - Variables - Missing Values @@ -2273,7 +2273,7 @@ The contents of the report are as follows.: - Overview - Data Structures - Data Types - - Job Informations + - Job Information - Univariate Analysis - Descriptive Statistics - Normality Test @@ -2349,7 +2349,7 @@ The contents of the report are as follows.: - Overview - Data Structures - - Job Informations + - Job Information - Univariate Analysis - Descriptive Statistics - Numerical Variables @@ -2457,7 +2457,7 @@ The contents of the report are as follows.: - Overview - Data Structures - Data Types - - Job Informations + - Job Information - Imputation - Missing Values - Outliers @@ -2527,7 +2527,7 @@ The contents of the report are as follows.: - Overview - Data Structures - - Job Informations + - Job Information - Imputation - Missing Values - Outliers diff --git a/docs/index.html b/docs/index.html index 06eb7fa3..d373496d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1938,7 +1938,7 @@
Contents of dynamic web reportContents of static paged reportOverview
  • Data Structures
  • -
  • Job Informations
  • +
  • Job Information
  • Warnings
  • Variables
@@ -2266,7 +2266,7 @@
Contents of dynamic web report
  • Data Structures
  • Data Types
  • -
  • Job Informations
  • +
  • Job Information
  • Univariate Analysis @@ -2393,7 +2393,7 @@
    Contents of static paged reportOverview
    • Data Structures
    • -
    • Job Informations
    • +
    • Job Information
  • Univariate Analysis @@ -2564,7 +2564,7 @@
    Contents of dynamic web report
  • Data Structures
  • Data Types
  • -
  • Job Informations
  • +
  • Job Information
  • Imputation @@ -2672,7 +2672,7 @@
    Contents of static paged reportOverview
    • Data Structures
    • -
    • Job Informations
    • +
    • Job Information
  • Imputation diff --git a/docs/reference/diagnose_paged_report.data.frame.html b/docs/reference/diagnose_paged_report.data.frame.html index 9da2110f..081ba5a8 100644 --- a/docs/reference/diagnose_paged_report.data.frame.html +++ b/docs/reference/diagnose_paged_report.data.frame.html @@ -238,7 +238,7 @@

    Reported information

    Reported from the data diagnosis is as follows.

    • Overview

      • Data Structures

      • -
      • Job Informations

      • +
      • Job Information

      • Warnings

      • Variables

    • diff --git a/docs/reference/diagnose_paged_report.tbl_dbi.html b/docs/reference/diagnose_paged_report.tbl_dbi.html index aaa318ca..92c99ffa 100644 --- a/docs/reference/diagnose_paged_report.tbl_dbi.html +++ b/docs/reference/diagnose_paged_report.tbl_dbi.html @@ -239,7 +239,7 @@

      Reported information

      Reported from the data diagnosis is as follows.

      • Overview

        • Data Structures

        • -
        • Job Informations

        • +
        • Job Information

        • Warnings

        • Variables

      • diff --git a/docs/reference/diagnose_web_report.data.frame.html b/docs/reference/diagnose_web_report.data.frame.html index 978307a1..c68e4298 100644 --- a/docs/reference/diagnose_web_report.data.frame.html +++ b/docs/reference/diagnose_web_report.data.frame.html @@ -188,7 +188,7 @@

        Reported information

        Reported from the data diagnosis is as follows.

        • Overview

          • Data Structures

            • Data Structures

            • Data Types

            • -
            • Job Informations

            • +
            • Job Information

          • Warnings

          • Variables

          • diff --git a/docs/reference/diagnose_web_report.tbl_dbi.html b/docs/reference/diagnose_web_report.tbl_dbi.html index 291556ff..49d03751 100644 --- a/docs/reference/diagnose_web_report.tbl_dbi.html +++ b/docs/reference/diagnose_web_report.tbl_dbi.html @@ -189,7 +189,7 @@

            Reported information

            Reported from the data diagnosis is as follows.

            • Overview

              • Data Structures

                • Data Structures

                • Data Types

                • -
                • Job Informations

                • +
                • Job Information

              • Warnings

              • Variables

              • diff --git a/docs/reference/eda_paged_report.data.frame.html b/docs/reference/eda_paged_report.data.frame.html index 954bab2a..6bd46757 100644 --- a/docs/reference/eda_paged_report.data.frame.html +++ b/docs/reference/eda_paged_report.data.frame.html @@ -211,7 +211,7 @@

                Reported information

                The EDA process will report the following information:

                • Overview

                  • Data Structures

                  • -
                  • Job Informations

                  • +
                  • Job Information

                • Univariate Analysis

                  • Descriptive Statistics

                    • Numerical Variables

                    • Categorical Variables

                    • diff --git a/docs/reference/eda_paged_report.tbl_dbi.html b/docs/reference/eda_paged_report.tbl_dbi.html index 4204aec6..ba70ebb1 100644 --- a/docs/reference/eda_paged_report.tbl_dbi.html +++ b/docs/reference/eda_paged_report.tbl_dbi.html @@ -212,7 +212,7 @@

                      Reported information

                      The EDA process will report the following information:

                      • Overview

                        • Data Structures

                        • -
                        • Job Informations

                        • +
                        • Job Information

                      • Univariate Analysis

                        • Descriptive Statistics

                          • Numerical Variables

                          • Categorical Variables

                          • diff --git a/docs/reference/eda_web_report.data.frame.html b/docs/reference/eda_web_report.data.frame.html index 3e216aad..997ff227 100644 --- a/docs/reference/eda_web_report.data.frame.html +++ b/docs/reference/eda_web_report.data.frame.html @@ -180,7 +180,7 @@

                            Reported information

                            Reported from the EDA is as follows.

                            • Overview

                              • Data Structures

                              • Data Types

                              • -
                              • Job Informations

                              • +
                              • Job Information

                            • Univariate Analysis

                              • Descriptive Statistics

                              • Normality Test

                              • diff --git a/docs/reference/eda_web_report.tbl_dbi.html b/docs/reference/eda_web_report.tbl_dbi.html index 838d8856..68d3b5a7 100644 --- a/docs/reference/eda_web_report.tbl_dbi.html +++ b/docs/reference/eda_web_report.tbl_dbi.html @@ -181,7 +181,7 @@

                                Reported information

                                Reported from the EDA is as follows.

                                • Overview

                                  • Data Structures

                                  • Data Types

                                  • -
                                  • Job Informations

                                  • +
                                  • Job Information

                                • Univariate Analysis

                                  • Descriptive Statistics

                                  • Normality Test

                                  • diff --git a/docs/reference/transformation_paged_report.html b/docs/reference/transformation_paged_report.html index 98f0e8c3..12fe1dac 100644 --- a/docs/reference/transformation_paged_report.html +++ b/docs/reference/transformation_paged_report.html @@ -203,7 +203,7 @@

                                    Reported information

                                    TThe transformation process will report the following information:

                                    • Overview

                                      • Data Structures

                                      • -
                                      • Job Informations

                                      • +
                                      • Job Information

                                    • Imputation

                                      • Missing Values

                                      • Outliers

                                      • diff --git a/docs/reference/transformation_web_report.html b/docs/reference/transformation_web_report.html index 896e8d4e..0c9d6b77 100644 --- a/docs/reference/transformation_web_report.html +++ b/docs/reference/transformation_web_report.html @@ -173,7 +173,7 @@

                                        Reported information

                                        The transformation process will report the following information:

                                        • Overview

                                          • Data Structures

                                          • Data Types

                                          • -
                                          • Job Informations

                                          • +
                                          • Job Information

                                        • Imputation

                                          • Missing Values

                                          • Outliers

                                          • diff --git a/inst/report/diagnosis_paged_temp.Rmd b/inst/report/diagnosis_paged_temp.Rmd index c109d410..7f1a2ecf 100644 --- a/inst/report/diagnosis_paged_temp.Rmd +++ b/inst/report/diagnosis_paged_temp.Rmd @@ -383,7 +383,7 @@ knitr::kables(format = "html", cat() ``` -## Job Informations +## Job Information ```{r overview-job, results='asis'} division <- c("dataset" ,"dataset", "job", "job", "job") diff --git a/inst/report/diagnosis_temp.Rmd b/inst/report/diagnosis_temp.Rmd index 52ad7e36..f920825b 100644 --- a/inst/report/diagnosis_temp.Rmd +++ b/inst/report/diagnosis_temp.Rmd @@ -424,7 +424,7 @@ knitr::kable(tab_right, digits = 2, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);margin-right:30px !important;\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "float_left") -cap <- "Job Informations" +cap <- "Job Information" knitr::kable(overview, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "left") @@ -515,7 +515,7 @@ tab_warning %>% ), status = colDef(name = "Types", width = 100), recommend = colDef( - name = "Recommends", + name = "Recommendations", width = 130, cell = function(value) { class <- paste0("tag recommend-", tolower(value)) diff --git a/inst/report/eda_paged_temp.Rmd b/inst/report/eda_paged_temp.Rmd index c4a54fd3..8df4dd91 100644 --- a/inst/report/eda_paged_temp.Rmd +++ b/inst/report/eda_paged_temp.Rmd @@ -113,7 +113,7 @@ knitr::kables(format = "html", cat() ``` -## Job Informations +## Job Information ```{r overview-job, results='asis'} division <- c("dataset" ,"dataset" ,"dataset", "job", "job", "job") diff --git a/inst/report/eda_temp.Rmd b/inst/report/eda_temp.Rmd index 9112caac..47d76ba8 100644 --- a/inst/report/eda_temp.Rmd +++ b/inst/report/eda_temp.Rmd @@ -238,7 +238,7 @@ knitr::kable(tab_right, digits = 2, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);margin-right:30px !important;\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "float_left") -cap <- "Job Informations" +cap <- "Job Information" knitr::kable(overview, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "left") diff --git a/inst/report/transformation_paged_temp.Rmd b/inst/report/transformation_paged_temp.Rmd index 03b749ba..b6ceabe6 100644 --- a/inst/report/transformation_paged_temp.Rmd +++ b/inst/report/transformation_paged_temp.Rmd @@ -112,7 +112,7 @@ knitr::kables(format = "html", cat() ``` -## Job Informations +## Job Information ```{r overview-job, results='asis'} division <- c("dataset" ,"dataset" ,"dataset", "job", "job", "job") diff --git a/inst/report/transformation_temp.Rmd b/inst/report/transformation_temp.Rmd index 3ad0f63c..4bd5dc2b 100644 --- a/inst/report/transformation_temp.Rmd +++ b/inst/report/transformation_temp.Rmd @@ -221,7 +221,7 @@ knitr::kable(tab_right, digits = 2, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);margin-right:30px !important;\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "float_left") -cap <- "Job Informations" +cap <- "Job Information" knitr::kable(overview, caption = cap, format = "html", table.attr = "style=\"color: hsl(0, 0%, 40%);\"") %>% kable_styling(full_width = FALSE, font_size = 14, position = "left") diff --git a/man/diagnose_paged_report.data.frame.Rd b/man/diagnose_paged_report.data.frame.Rd index 46a9868c..e9a22a7e 100644 --- a/man/diagnose_paged_report.data.frame.Rd +++ b/man/diagnose_paged_report.data.frame.Rd @@ -125,7 +125,7 @@ Reported from the data diagnosis is as follows. \item Overview \itemize{ \item Data Structures - \item Job Informations + \item Job Information \item Warnings \item Variables } diff --git a/man/diagnose_paged_report.tbl_dbi.Rd b/man/diagnose_paged_report.tbl_dbi.Rd index 23a6a7b8..4cc56ba9 100644 --- a/man/diagnose_paged_report.tbl_dbi.Rd +++ b/man/diagnose_paged_report.tbl_dbi.Rd @@ -127,7 +127,7 @@ Reported from the data diagnosis is as follows. \item Overview \itemize{ \item Data Structures - \item Job Informations + \item Job Information \item Warnings \item Variables } diff --git a/man/diagnose_web_report.data.frame.Rd b/man/diagnose_web_report.data.frame.Rd index b5ed4629..dab1e219 100644 --- a/man/diagnose_web_report.data.frame.Rd +++ b/man/diagnose_web_report.data.frame.Rd @@ -92,7 +92,7 @@ Reported from the data diagnosis is as follows. \itemize{ \item Data Structures \item Data Types - \item Job Informations + \item Job Information } \item Warnings \item Variables diff --git a/man/diagnose_web_report.tbl_dbi.Rd b/man/diagnose_web_report.tbl_dbi.Rd index f2343fc9..ef869cb5 100644 --- a/man/diagnose_web_report.tbl_dbi.Rd +++ b/man/diagnose_web_report.tbl_dbi.Rd @@ -94,7 +94,7 @@ Reported from the data diagnosis is as follows. \itemize{ \item Data Structures \item Data Types - \item Job Informations + \item Job Information } \item Warnings \item Variables diff --git a/man/eda_paged_report.data.frame.Rd b/man/eda_paged_report.data.frame.Rd index c3eb9aec..af308fda 100644 --- a/man/eda_paged_report.data.frame.Rd +++ b/man/eda_paged_report.data.frame.Rd @@ -107,7 +107,7 @@ The EDA process will report the following information: \item Overview \itemize{ \item Data Structures - \item Job Informations + \item Job Information } \item Univariate Analysis \itemize{ diff --git a/man/eda_paged_report.tbl_dbi.Rd b/man/eda_paged_report.tbl_dbi.Rd index 752903f9..8e2e9551 100644 --- a/man/eda_paged_report.tbl_dbi.Rd +++ b/man/eda_paged_report.tbl_dbi.Rd @@ -109,7 +109,7 @@ The EDA process will report the following information: \item Overview \itemize{ \item Data Structures - \item Job Informations + \item Job Information } \item Univariate Analysis \itemize{ diff --git a/man/eda_web_report.data.frame.Rd b/man/eda_web_report.data.frame.Rd index 28deff98..b678a3f7 100644 --- a/man/eda_web_report.data.frame.Rd +++ b/man/eda_web_report.data.frame.Rd @@ -84,7 +84,7 @@ Reported from the EDA is as follows. \itemize{ \item Data Structures \item Data Types - \item Job Informations + \item Job Information } \item Univariate Analysis \itemize{ diff --git a/man/eda_web_report.tbl_dbi.Rd b/man/eda_web_report.tbl_dbi.Rd index 0f593cb8..ea273f60 100644 --- a/man/eda_web_report.tbl_dbi.Rd +++ b/man/eda_web_report.tbl_dbi.Rd @@ -86,7 +86,7 @@ Reported from the EDA is as follows. \itemize{ \item Data Structures \item Data Types - \item Job Informations + \item Job Information } \item Univariate Analysis \itemize{ diff --git a/man/transformation_paged_report.Rd b/man/transformation_paged_report.Rd index 4d89d298..c72c8107 100644 --- a/man/transformation_paged_report.Rd +++ b/man/transformation_paged_report.Rd @@ -101,7 +101,7 @@ TThe transformation process will report the following information: \item Overview \itemize{ \item Data Structures - \item Job Informations + \item Job Information } \item Imputation \itemize{ diff --git a/man/transformation_web_report.Rd b/man/transformation_web_report.Rd index ca1827aa..3a0b5b91 100644 --- a/man/transformation_web_report.Rd +++ b/man/transformation_web_report.Rd @@ -79,7 +79,7 @@ The transformation process will report the following information: \itemize{ \item Data Structures \item Data Types - \item Job Informations + \item Job Information } \item Imputation \itemize{ diff --git a/vignettes/EDA.Rmd b/vignettes/EDA.Rmd index f629d865..d10447e2 100644 --- a/vignettes/EDA.Rmd +++ b/vignettes/EDA.Rmd @@ -457,7 +457,7 @@ The contents of the report are as follows.: * Overview + Data Structures + Data Types - + Job Informations + + Job Information * Univariate Analysis + Descriptive Statistics + Normality Test @@ -524,7 +524,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information * Univariate Analysis + Descriptive Statistics + Numerical Variables diff --git a/vignettes/diagonosis.Rmd b/vignettes/diagonosis.Rmd index 71c0ef40..c11e56de 100644 --- a/vignettes/diagonosis.Rmd +++ b/vignettes/diagonosis.Rmd @@ -340,7 +340,7 @@ The contents of the report are as follows.: + Data Structures + Data Structures + Data Types - + Job Informations + + Job Information + Warnings + Variables * Missing Values @@ -425,7 +425,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information + Warnings + Variables * Missing Values diff --git a/vignettes/transformation.Rmd b/vignettes/transformation.Rmd index fba8f634..d732f033 100644 --- a/vignettes/transformation.Rmd +++ b/vignettes/transformation.Rmd @@ -390,7 +390,7 @@ The contents of the report are as follows.: * Overview + Data Structures + Data Types - + Job Informations + + Job Information * Imputation + Missing Values + Outliers @@ -450,7 +450,7 @@ The contents of the report are as follows.: * Overview + Data Structures - + Job Informations + + Job Information * Imputation + Missing Values + Outliers