diff --git a/MarkdownReports/MarkdownReports.Rproj b/MarkdownReports/MarkdownReports.Rproj deleted file mode 100644 index d848a9f..0000000 --- a/MarkdownReports/MarkdownReports.Rproj +++ /dev/null @@ -1,16 +0,0 @@ -Version: 1.0 - -RestoreWorkspace: No -SaveWorkspace: No -AlwaysSaveHistory: Default - -EnableCodeIndexing: Yes -Encoding: UTF-8 - -AutoAppendNewline: Yes -StripTrailingWhitespace: Yes - -BuildType: Package -PackageUseDevtools: Yes -PackageInstallArgs: --no-multiarch --with-keep.source -PackageRoxygenize: rd,collate,namespace diff --git a/MarkdownReports/MarkdownReports/.Rbuildignore b/MarkdownReports/MarkdownReports/.Rbuildignore deleted file mode 100644 index 91114bf..0000000 --- a/MarkdownReports/MarkdownReports/.Rbuildignore +++ /dev/null @@ -1,2 +0,0 @@ -^.*\.Rproj$ -^\.Rproj\.user$ diff --git a/MarkdownReports/MarkdownReports/.gitignore b/MarkdownReports/MarkdownReports/.gitignore deleted file mode 100644 index 807ea25..0000000 --- a/MarkdownReports/MarkdownReports/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.Rproj.user -.Rhistory -.RData diff --git a/MarkdownReports/MarkdownReports/DESCRIPTION b/MarkdownReports/MarkdownReports/DESCRIPTION deleted file mode 100644 index 56f571a..0000000 --- a/MarkdownReports/MarkdownReports/DESCRIPTION +++ /dev/null @@ -1,8 +0,0 @@ -Package: MarkdownReports -Title: Generate Scientific Figures and Reports Easily -Version: 0.0.0.9000 -Authors@R: Abel Vertesy [aut, cre] -Description: An R function library to create scientific figures and reports easily. -Depends: R (>= 3.2.2) -License: GNU GPL 3 -LazyData: true diff --git a/MarkdownReports/MarkdownReports/MarkdownReports.Rproj b/MarkdownReports/MarkdownReports/MarkdownReports.Rproj deleted file mode 100644 index d848a9f..0000000 --- a/MarkdownReports/MarkdownReports/MarkdownReports.Rproj +++ /dev/null @@ -1,16 +0,0 @@ -Version: 1.0 - -RestoreWorkspace: No -SaveWorkspace: No -AlwaysSaveHistory: Default - -EnableCodeIndexing: Yes -Encoding: UTF-8 - -AutoAppendNewline: Yes -StripTrailingWhitespace: Yes - -BuildType: Package -PackageUseDevtools: Yes -PackageInstallArgs: --no-multiarch --with-keep.source -PackageRoxygenize: rd,collate,namespace diff --git a/MarkdownReports/MarkdownReports/NAMESPACE b/MarkdownReports/MarkdownReports/NAMESPACE deleted file mode 100644 index 884a631..0000000 --- a/MarkdownReports/MarkdownReports/NAMESPACE +++ /dev/null @@ -1,2 +0,0 @@ -# Generated by roxygen2: fake comment so roxygen2 overwrites silently. -exportPattern("^[^\\.]") diff --git a/MarkdownReports/R/MarkdownReports.R b/MarkdownReports/R/MarkdownReports.R index d4add7c..1f3f808 100644 --- a/MarkdownReports/R/MarkdownReports.R +++ b/MarkdownReports/R/MarkdownReports.R @@ -243,7 +243,7 @@ MarkDown_Img_Logger_PDF_and_PNG <-function (fname_wo_ext) { #' Take an R data frame with row- and column- names, parse a markdown table from it, and write it to the markdown report, set by "path_of_report". #' @param df Input data frame to be plotted #' @param FullPath Full path to the file. -#' @param percentify Format numbers [0,1] to percentages 1-100%. +#' @param percentify Format numbers [0,1] to percentages 0-100. #' @param title_of_table Title above the table (in the markdown report). #' @examples MarkDown_Table_writer_DF_RowColNames (df = , FullPath = path_of_report, percentify = F, title_of_table = NA) #' @export @@ -292,7 +292,7 @@ MarkDown_Table_writer_DF_RowColNames <-function (df, FullPath = path_of_report, #' Take an R vector with names, parse a markdown table from it, and write it to the markdown report, set by "path_of_report". #' @param NamedVector A vector for the table body, with names as table header. #' @param FullPath Full path to the file. -#' @param percentify Format numbers [0,1] to percentages 1-100%. +#' @param percentify Format numbers [0,1] to percentages 0-100. #' @param title_of_table Title above the table (in the markdown report). #' @examples MarkDown_Table_writer_NamedVector (NamedVector = , FullPath = path_of_report, percentify = F, title_of_table = NA) #' @export