Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alastair rushworth committed Nov 5, 2019
1 parent 29d028e commit 841b4fb
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
^tests$
^docs$
^vignettes/pkgdown$
^pkgdown$
^inst$
^checks\.R$
^big_tests\.R$
Expand All @@ -17,3 +18,4 @@
^README.html$
^\.Rout$
^\.RData
^new_cor\.R$
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: inspectdf
Title: Inspection, Comparison and Visualisation of Data Frames
Version: 0.0.7.9000
Version: 0.0.7
Authors@R: c(
person("Alastair", "Rushworth", email = "[email protected]", role = c("aut", "cre")),
person("David", "Wilkins", email = "[email protected]", role = "ctb")
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ importFrom(tibble,tibble)
importFrom(tidyr,gather)
importFrom(tidyr,nest)
importFrom(tidyr,replace_na)
importFrom(tidyr,unite)
importFrom(tidyr,unnest)
importFrom(utils,object.size)
importFrom(utils,tail)
Expand Down
6 changes: 3 additions & 3 deletions NEWS.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ output: github_document
knitr::opts_chunk$set(echo = TRUE)
```

# `inspectdf` 0.0.7.9000
# `inspectdf` 0.0.7

- Added `bytes` column to `inspect_mem()` output, for downstream numeric comparison and consistency with `inspectpd`.
- Added `pcnt_nna` column to `inspect_cor()` output containin the percentage of pairwise complete observations used calculated correlations. Thanks to Theo Broekman for the suggestion.
- Added `pcnt_nna` column to `inspect_cor()` output containing the percentage of pairwise complete observations used calculated correlations. Thanks to Theo Broekman for the suggestion.
- Fixed bug causing order of grouping variable in grouped `inspect_` statements to be incorrect. Thanks to the report from Theo Broekman.
- Removed erroneous print statement form `inspect_num()`.
- Removed erroneous print statement from `inspect_num()`.

# `inspectdf` 0.0.6

Expand Down
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# `inspectdf` 0.0.7.9000
# `inspectdf` 0.0.7

- Added `bytes` column to `inspect_mem()` output, for downstream
numeric comparison and consistency with `inspectpd`.
- Added `pcnt_nna` column to `inspect_cor()` output containin the
- Added `pcnt_nna` column to `inspect_cor()` output containing the
percentage of pairwise complete observations used calculated
correlations. Thanks to Theo Broekman for the suggestion.
- Fixed bug causing order of grouping variable in grouped `inspect_`
statements to be incorrect. Thanks to the report from Theo Broekman.
- Removed erroneous print statement form `inspect_num()`.
- Removed erroneous print statement from `inspect_num()`.

# `inspectdf` 0.0.6

Expand Down
3 changes: 2 additions & 1 deletion R/plot_grouped.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#' @importFrom tidyr unite

plot_grouped <- function(df, value, series, group, plot_type,
col_palette, text_labels, ylab){

z <- 1 + 1
# get group names
grp_attr <- attr(df, 'groups')
ngroups <- ncol(grp_attr) - 1
Expand Down
3 changes: 2 additions & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"cnt", "col_names", "white_labs", "black_labs",
"cls", "alpha", "jsd", "significant", "bar_width",
"corr_1", "corr_2", "data_frame_n", "col_vec", "size",
"df_cat_fact", "ymax", "se", "col_name1", "prop_z", "data"))
"df_cat_fact", "ymax", "se", "col_name1", "prop_z",
"data", "pcnt_nna", "bytes"))
invisible()
}

0 comments on commit 841b4fb

Please sign in to comment.