Skip to content

Commit

Permalink
fix: fixing yet another issue introduced with new r-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsner committed Feb 5, 2025
1 parent ae0ed6b commit 36e7d3d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@
^man/figures$
^Rplots\.pdf$
^/dqa-dqastats\.wiki$
^\.Rproj\.user$
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ inst/doc
.~lock.*.csv#
!/manifests/
!cran-comments.md
.Rproj.user
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: DQAstats
Title: Core Functions for Data Quality Assessment
Version: 0.3.7
Date: 2025-02-04
Date: 2025-02-05
Authors@R: c(
person("Lorenz A.", "Kapsner", , "[email protected]", role = c("cre", "aut"),
comment = c(ORCID = "0000-0003-1866-860X")),
Expand Down Expand Up @@ -45,3 +45,4 @@ Encoding: UTF-8
Roxygen: list(markdown = TRUE)
SystemRequirements: Quarto command line tools
(https://github.com/quarto-dev/quarto-cli).
RoxygenNote: 7.3.2
9 changes: 7 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

# DQAstats NEWS

## Unreleased (2025-01-27)
## Unreleased (2025-02-04)

#### Bug fixes

- fixed cran issue showing up in r-devel
([ae0ed6b](https://git.uk-erlangen.de/mik-diz/mik-diz-phd/DQA/dqastats/tree/ae0ed6b69966eee8643ffa1341d083690ad5cb5f))

#### Other changes

Expand All @@ -16,7 +21,7 @@
([9ee9e59](https://git.uk-erlangen.de/mik-diz/mik-diz-phd/DQA/dqastats/tree/9ee9e594d651dd048b6389ad96b1c6e761050435))

Full set of changes:
[`v0.3.6...e8fd8ff`](https://git.uk-erlangen.de/mik-diz/mik-diz-phd/DQA/dqastats/compare/v0.3.6...e8fd8ff)
[`v0.3.6...ae0ed6b`](https://git.uk-erlangen.de/mik-diz/mik-diz-phd/DQA/dqastats/compare/v0.3.6...ae0ed6b)

## v0.3.6 (2024-11-27)

Expand Down
6 changes: 5 additions & 1 deletion R/simple_summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
#
# simple summary
simple_summary <- function(vector) {
ar <- as.data.frame(as.array(summary(vector)))
ar <- data.table::as.data.table(
as.array(summary(vector)),
keep.rownames = TRUE,
na.rm = FALSE
)
ar[, 2] <- as.character(ar[, 2])
colnames(ar) <- c(" ", " ")
return(ar)
Expand Down

0 comments on commit 36e7d3d

Please sign in to comment.