Skip to content

Commit

Permalink
version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
conig authored and cran-robot committed Aug 9, 2018
1 parent c4e42e9 commit cf1657e
Show file tree
Hide file tree
Showing 7 changed files with 206 additions and 100 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: Conigrave
Type: Package
Title: Flexible Tools for Multiple Imputation
Version: 0.4.0
Date: 2018-08-03
Version: 0.4.1
Date: 2018-08-09
Author: James Conigrave
Maintainer: James Conigrave <james.conigrave@gmail.com>
Description: Provides a set of tools that can be used across 'data.frame' and
Expand All @@ -11,9 +11,9 @@ License: GPL-3
LazyData: TRUE
Imports: ggplot2 (>= 2.1.0), mitools (>= 2.3), miceadds (>= 1.8-0),
magrittr (>= 1.5), stringdist(>= 0.9.4.7), dplyr(>= 0.7.3),
stringr(>= 1.3.1)
stringr(>= 1.3.1), ppcor(>= 1.1)
RoxygenNote: 6.1.0
NeedsCompilation: no
Packaged: 2018-08-03 08:03:26 UTC; jcon4884
Packaged: 2018-08-09 05:47:26 UTC; jcon4884
Repository: CRAN
Date/Publication: 2018-08-03 08:20:06 UTC
Date/Publication: 2018-08-09 08:40:07 UTC
12 changes: 6 additions & 6 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
3bbf5f1d8197ea8b5c1a3a0d778a592b *DESCRIPTION
aba87d466ff0fc8ccb40acecb86e803d *NAMESPACE
6cf16bd86ebd88fbe4fecf7fa9ce9677 *DESCRIPTION
c7a7a41774e5c501bbc9508efbf55624 *NAMESPACE
83dcd3728b8921d4318e174214757dc0 *R/Automodel.R
a7c9d390d7960385561be8f9420e24d6 *R/Interaction.plot.R
4933fb383746edfe8f408cc24aaafe40 *R/check_names.R
8fd1a8bf0cba1cd8b19990adf4521022 *R/correlatrix.R
78dfb064af9a7f0e2f0e607d5aa11ae4 *R/check_names.R
1c0f533d4631c6e22aaf00d995f7dc13 *R/correlatrix.R
4672a89e3644e69bc18087098cfdd1b1 *R/get.numeric.R
43ea6dcdb8b19153b1d0ec462888e9e0 *man/autoModel.Rd
2f74830fbbc1a006f133e5ce6ccb963d *man/check_names.Rd
3d986813c41619b16f2882e1941f4e37 *man/correlatrix.Rd
dafd872f1e02fcb1a5fdd352699bafc4 *man/check_names.Rd
9ae64ab0156ba55fab5861ca4a8fa777 *man/correlatrix.Rd
a8c00647ed8844f55db210c1ccfe3a04 *man/get.numeric.Rd
21dd4100a92d8d6e1708aea6def23cb0 *man/int.plot.Rd
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(autoModel)
export(check_names)
export(correlatrix)
export(get.numeric)
export(int.plot)
Expand All @@ -21,6 +22,7 @@ importFrom(magrittr,"%>%")
importFrom(miceadds,micombine.cor)
importFrom(mitools,MIcombine)
importFrom(mitools,imputationList)
importFrom(ppcor,pcor.test)
importFrom(stats,cor.test)
importFrom(stats,lm)
importFrom(stats,na.omit)
Expand Down
7 changes: 4 additions & 3 deletions R/check_names.R
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#' check_names
#'
#' Takes in a vector of colnames, and a data.frame or imputationList. This funciton will trigger an error if names are not in the data object. In addition, this name will try to predict which names they were trying to spell.
#' @param x a vector of names.
#' Takes in a vector of colnames, and a data.frame or imputationList. This function will trigger an error if names are not in the data object. In addition, this function will try to predict which names the user was trying to spell.
#' @param x a vector of colnames.
#' @param data a data.frame or imputationList.
#' @return check_names will trigger an error if the supplied vector of names were not found in the supplied object. It will also predict which names the user was trying to spell.
#' @export check_names
#' @importFrom stringdist stringdist
#' @importFrom magrittr %>%
#' @return check_names will trigger an error if the supplied vector of names are not found in the supplied object. It will also predict which names the user was trying to spell.

check_names = function(x, data) {
#this function checks to see if names are missing
Expand Down
265 changes: 183 additions & 82 deletions R/correlatrix.R

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions man/check_names.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/correlatrix.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cf1657e

Please sign in to comment.