Skip to content

Commit 05f609b

Browse files
authored
Merge pull request #9 from AlissonRP/freq2x2
Release 0.3
2 parents 7ad30fb + be15bbb commit 05f609b

30 files changed

+369
-191
lines changed

.github/workflows/R-CMD-check.yaml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
2+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
branches: [main, master]
8+
9+
name: R-CMD-check
10+
11+
jobs:
12+
R-CMD-check:
13+
runs-on: ubuntu-latest
14+
env:
15+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
16+
R_KEEP_PKG_SOURCE: yes
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- uses: r-lib/actions/setup-r@v1
21+
with:
22+
use-public-rspm: true
23+
24+
- uses: r-lib/actions/setup-r-dependencies@v1
25+
with:
26+
extra-packages: rcmdcheck
27+
28+
- uses: r-lib/actions/check-r-package@v1
29+
30+
- name: Show testthat output
31+
if: always()
32+
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true
33+
shell: bash
34+
35+
- name: Upload check results
36+
if: failure()
37+
uses: actions/upload-artifact@main
38+
with:
39+
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
40+
path: check

NAMESPACE

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export("%>%")
4+
export(as_tabyl)
45
export(pdf1_freq.tbl)
5-
export(pdf1_freq.tbl2)
66
export(pdf1_na)
7+
export(pdf1_summary)
78
export(pdf1_tbl)
9+
export(pdf1_tbl_freq)
10+
export(pdf1_tbl_freq2)
811
export(untabyl)
12+
importFrom(janitor,as_tabyl)
13+
importFrom(janitor,untabyl)
914
importFrom(magrittr,"%>%")

R/as_tabyl.R

-64
This file was deleted.

R/freq-table-DE.R

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#' pdf1_freq.tbl
2+
#'
3+
#' this is a very simple frequency table generator
4+
#'
5+
#'
6+
#' @param obj Object used to create the table. Data frame, list or environment
7+
#' (or object coercible by as.data.frame to a data frame)
8+
#' @param tit Title for the table, write in string format
9+
#' @param v Variable that you want the table (not written in string format)
10+
#' @export
11+
pdf1_freq.tbl <- function(obj, v, tit) {
12+
stop("Esta função foi renomeada, use pdf1_tbl_freq")
13+
}

R/freq-table.R

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
#' pdf1_freq.tbl
1+
#' pdf1_freq_tbl
22
#'
33
#' this is a very simple frequency table generator
44
#'
55
#'
66
#' @param obj Object used to create the table. Data frame, list or environment
77
#' (or object coercible by as.data.frame to a data frame)
8-
#' @param tit Title for the table, write in string format
9-
#' @param v Variable that you want the table (not written in string format)
8+
#' @param var Variable that you want the table (not written in string format)
109
#' @param ... Other arguments
1110
#' @examples
1211
#' iris %>%
13-
#' mypdf1::pdf1_freq.tbl(Species, "title") %>%
12+
#' mypdf1::pdf1_tbl_freq(Species) %>%
1413
#' mypdf1::pdf1_tbl(" You can combine this function too!")
1514
#' @export
16-
pdf1_freq.tbl <- function(obj, v, tit) {
15+
pdf1_tbl_freq <- function(obj, var) {
1716
obj %>%
18-
dplyr::count({{ v }}) %>%
19-
dplyr::mutate(`Frequência Relativa` = prop.table(n) %>% round(3)) %>%
20-
dplyr::rename(`Frequência Absoluta` = n) %>%
21-
janitor::adorn_totals("row")
17+
dplyr::count({{ var }}) %>%
18+
dplyr::mutate(`relative_frequency` = prop.table(n) %>% round(3)) %>%
19+
dplyr::rename(`abosulute_frequency` = n) %>%
20+
janitor::adorn_totals("row") |>
21+
dplyr::tibble()
2222
}

R/freq-table2.R

+13-13
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,43 @@
88
#'
99
#' @param obj Object used to create the table. Data frame, list or environment
1010
#' (or object coercible by as.data.frame to a data frame)
11-
#' @param tit Title for the table, write in string format
12-
#' @param v1 Variable that you want the table (not written in string format)
13-
#' @param v2 Variable that you want on the top of the table (not written in string format)
11+
#' @param title titlele for the table, write in string format
12+
#' @param var1 Variable that you want the table (not written in string format)
13+
#' @param var2 Variable that you want on the top of the table (not written in string format)
1414
#' @param ... Other arguments
1515
#' @param marg Marginal row table, default is FALSE
1616

1717
#' @examples
1818
#' mtcars |>
19-
#' mypdf1::pdf1_freq.tbl2(cyl, am, "tit", marg = TRUE)
19+
#' mypdf1::pdf1_tbl_freq2(cyl, am, "title", marg = TRUE)
2020
#' @export
21-
pdf1_freq.tbl2 <- function(obj, v1, v2, tit, marg = F) {
21+
pdf1_tbl_freq2 <- function(obj, var1, var2, title, marg = F) {
2222
tab <- obj %>%
23-
dplyr::group_by({{ v1 }}, {{ v2 }}) %>%
23+
dplyr::group_by({{ var1 }}, {{ var2 }}) %>%
2424
dplyr::summarise(n = dplyr::n()) %>%
25-
tidyr::spread({{ v2 }}, n)
25+
tidyr::spread({{ var2 }}, n)
2626
if (marg != TRUE) {
2727
title2 <- obj |>
28-
dplyr::select({{ v2 }}) |>
28+
dplyr::select({{ var2 }}) |>
2929
names()
3030
catlev <- nrow(unique(obj |>
31-
dplyr::select({{ v2 }}))) + 1
31+
dplyr::select({{ var2 }}))) + 1
3232
tab <- tab |>
3333
janitor::adorn_totals("row") %>%
3434
janitor::adorn_totals("col") %>%
3535
dplyr::ungroup() |>
36-
mypdf1::pdf1_tbl(tit) |>
36+
mypdf1::pdf1_tbl(title) |>
3737
kableExtra::add_header_above(c(" ", setNames(catlev, title2)), align = "c")
3838
} else {
3939
title2 <- obj |>
40-
dplyr::select({{ v2 }}) |>
40+
dplyr::select({{ var2 }}) |>
4141
names()
4242
catlev <- nrow(unique(obj |>
43-
dplyr::select({{ v2 }})))
43+
dplyr::select({{ var2 }})))
4444
tab <- tab |>
4545
janitor::adorn_percentages() %>%
4646
dplyr::ungroup() |>
47-
mypdf1::pdf1_tbl(tit) |>
47+
mypdf1::pdf1_tbl(title) |>
4848
kableExtra::add_header_above(c(" ", setNames(catlev, title2)), align = "c")
4949
}
5050
tab

R/imports.R

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#' @importFrom janitor untabyl
2+
#' @export
3+
janitor::untabyl
4+
5+
#' @importFrom janitor as_tabyl
6+
#' @export
7+
janitor::as_tabyl
8+
9+
10+
11+
12+
13+
14+
15+
16+

R/logo.R

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#library(hexSticker)
2+
#imgurl <- system.file("figures/teste.png", package="mypdf1")
3+
#(sticker(imgurl, package="mypdf1", p_size=20, s_x=1, s_y=.75, s_width=.55,
4+
# h_fill="#E7EDF0", h_color="#135389",p_color = "#135389"))

R/pdf1_na.R

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
#' @description
44
#' `r lifecycle::badge("experimental")`
55
#'
6-
#' this is a very simple table of the quantity of NA by variable
6+
#' this is a very simple table of the quantity of `NA` by variable
77
#'
8-
#' @param obj Object used to create the table. Data frame, list or environment
9-
#' (or object coercible by as.data.frame to a data frame)
8+
#' @param obj Object used to create the table.
9+
#'
10+
#' `data.frame`, `list` or environment
11+
#' (or object coercible by `as.data.frame` to a `data.frame`)
1012
#' @param ... Other arguments
1113
#' @examples
1214
#' airquality %>%
@@ -16,5 +18,5 @@ pdf1_na <- function(obj, ...) {
1618
vec <- is.na(obj) |>
1719
as.data.frame() |>
1820
purrr::map_dbl(sum)
19-
dplyr::tibble(`Variavel` = names(vec), `Total_Na` = vec %>% as.vector())
21+
dplyr::tibble(`variable` = names(vec), `total_Na` = vec %>% as.vector())
2022
}

R/pdf1_summary.R

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#' pdf1_summary()
2+
#'
3+
#' this is a very summary generator
4+
#'
5+
#'
6+
#' @param obj Object used to create the table.
7+
#'
8+
#' `data.frame`, `list` or environment
9+
#' (or object coercible by `as.data.frame` to a `data.frame`)
10+
#'
11+
#' @param na_rm option to remove `NA` from variables
12+
13+
#' @examples
14+
#' mtcars |>
15+
#' mypdf1::pdf1_summary()
16+
#'
17+
#' airquality |> mypdf1::pdf1_summary(na_rm = FALSE)
18+
#'
19+
#' iris |> mypdf1::pdf1_summary()
20+
#' @export
21+
pdf1_summary <- function(obj, na_rm = TRUE) {
22+
23+
char <- obj |>
24+
dplyr::select(where((is.character))) |> # dumb i know
25+
ncol()
26+
fac <- obj |>
27+
dplyr::select(where((is.factor))) |> # dumb i know
28+
ncol()
29+
if ((char + fac) != 0) {
30+
warning("string and factors variables were removed for calculations")}
31+
obj <- obj |>
32+
dplyr::select(where(is.numeric))
33+
if( na_rm== TRUE & any(is.na(obj))){
34+
warning("Your dataframe has NA, they will be removed from calculations \n use na_rm = FALSE if you want to keep them")
35+
}
36+
37+
38+
funs <- c(mean = mean, median = median, sd = sd, min = min, max = max)
39+
args <- list(na.rm = na_rm)
40+
obj |>
41+
purrr::map_df(~ funs %>%
42+
purrr::map(purrr::exec, .x, !!!args), .id = "variable")
43+
}

R/pdf1_tbl.R

+27-18
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,39 @@
11
#' pdf1_tbl
22
#'
3-
#'this is a very simple table generator
3+
#' this is a very simple table generator
44
#'
55
#'
6-
#' @param obj Object used to create the table. Data frame, list or environment
7-
#' (or object coercible by as.data.frame to a data frame)
8-
#' @param tit Title for the table, write in string format
9-
#' @param format Format of table, write in string format. Possible values are latex, html.
10-
#' The value of this argument will be automatically determined if the function is called within a knitr document.
11-
#' @param code If you want the table code to appear in the console, put code=TRUE, the default is FALSE, you can combine with format.
12-
#' Remember that by default the format is html
6+
#' @param obj Object used to create the table.
7+
#'
8+
#' `data.frame`, `list` or environment
9+
#' (or object coercible by `as.data.frame` to a `data.frame`)
10+
#' @param title Title for the table, write in string format
11+
#' @param format Format of table, write in string format. Possible values are `"latex"`, "`html`".
12+
#' @param code If you want the table code to appear in the console, put `code=TRUE`, you can combine with `format`.
1313
#' @param ... Other arguments
14+
#' @note Remember that by default the format is `"html"`
15+
#'
16+
#' The default of `code` is `FALSE`
17+
#'
18+
#'The value of `format` will be automatically determined if the function is called within a knitr document
1419
#' @examples
15-
#'iris %>%
16-
#' dplyr::group_by(Species) %>%
17-
#' dplyr::summarise(mean=mean(Sepal.Length)) %>%
18-
#' mypdf1::pdf1_tbl("THIS FUNCTION IS SO INCREDIBLE!")
20+
#' iris %>%
21+
#' dplyr::group_by(Species) %>%
22+
#' dplyr::summarise(mean = mean(Sepal.Length)) %>%
23+
#' mypdf1::pdf1_tbl("THIS FUNCTION IS SO INCREDIBLE!")
24+
#'
25+
#' mtcars |>
26+
#' dplyr::group_by(carb) |>
27+
#' dplyr::summarise(sd = sd(wt)) |>
28+
#' mypdf1::pdf1_tbl()
1929
#' @export
20-
pdf1_tbl=function(obj,tit,format=NULL,code=F,...){
21-
if(code==T){
30+
pdf1_tbl <- function(obj, title = "", format = NULL, code = F, ...) {
31+
if (code == T) {
2232
obj %>%
23-
knitr::kable(caption=tit,align = "c",format=format)
24-
} else{
33+
knitr::kable(caption = title, align = "c", format = format)
34+
} else {
2535
obj %>%
26-
knitr::kable(caption=tit,align = "c",format=format) |>
36+
knitr::kable(caption = title, align = "c", format = format) |>
2737
kableExtra::kable_classic(latex_options = "HOLD_position")
28-
2938
}
3039
}

0 commit comments

Comments
 (0)