8000 Version 0.0.1 accepted to CRAN by hanneoberman · Pull Request #30 · amices/ggmice · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Version 0.0.1 accepted to CRAN #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 0.0.1
Date: 2022-03-15 16:49:59 UTC
SHA: dcfcfa5a0bc6f945790ed2b5d3051eba7ff08161
Date: 2022-03-16 18:36:30 UTC
SHA: f3e7e2fcbf1516bda983f82159b30806c739d48f
14 changes: 10 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,19 @@ set.seed(1)
[![Codecov test coverage](https://codecov.io/gh/amices/ggmice/branch/main/graph/badge.svg)](https://app.codecov.io/gh/amices/ggmice?branch=main)
<!-- badges: end -->

## Plotting package for incomplete and imputed data
## Visualizations for `mice` with `ggplot2`

The `ggmice` package enhances imputation package `mice` with `ggplot2` visualizations. See the [vignette](https://amices.org/ggmice/articles/ggmice.html) for an overview of `ggmice`'s functionalities.
Enhance a `mice` imputation workflow with visualizations for incomplete and/or imputed data. The plotting functions produce `ggplot` objects which may be easily manipulated or extended. Use `ggmice` to inspect missing data, develop imputation models, evaluate algorithmic convergence, or compare observed versus imputed data.

## Installation

You can install the development version of `ggmice` from [GitHub](https://github.com/amices) with:
You can install the latest `ggmice` release from [CRAN](https://cran.r-project.org/) with:

``` r
install.packages("ggmice")
```

Alternatively, you could install the development version of `ggmice` from [GitHub](https://github.com/amices) with:

``` r
# install.packages("devtools")
Expand All @@ -39,7 +45,7 @@ devtools::install_github("amices/ggmice")

## Example

Visualize missing data in an incomplete dataset, or evaluate imputed data against the observed data.
Visualize missing data in an incomplete dataset, or evaluate imputed data against the observed data.See the [`ggmice` vignette](https://amices.org/ggmice/articles/ggmice.html) for an overview of all functionalities.

```{r example}
# load the package and some data
Expand Down
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,25 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](h
coverage](https://codecov.io/gh/amices/ggmice/branch/main/graph/badge.svg)](https://app.codecov.io/gh/amices/ggmice?branch=main)
<!-- badges: end -->

## Plotting package for incomplete and imputed data
## Visualizations for `mice` with `ggplot2`

The `ggmice` package enhances imputation package `mice` with `ggplot2`
visualizations. See the
[vignette](https://amices.org/ggmice/articles/ggmice.html) for an
overview of `ggmice`’s functionalities.
Enhance a `mice` imputation workflow with visualizations for incomplete
and/or imputed data. The plotting functions produce `ggplot` objects
which may be easily manipulated or extended. Use `ggmice` to inspect
missing data, develop imputation models, evaluate algorithmic
convergence, or compare observed versus imputed data.

## Installation

You can install the development version of `ggmice` from
[GitHub](https://github.com/amices) with:
You can install the latest `ggmice` release from
[CRAN](https://cran.r-project.org/) with:

``` r
install.packages("ggmice")
```

Alternatively, you could install the development version of `ggmice`
from [GitHub](https://github.com/amices) with:

``` r
# install.packages("devtools")
Expand All @@ -35,7 +43,9 @@ devtools::install_github("amices/ggmice")
## Example

Visualize missing data in an incomplete dataset, or evaluate imputed
data against the observed data.
data against the observed data.See the [`ggmice`
vignette](https://amices.org/ggmice/articles/ggmice.html) for an
overview of all functionalities.

``` r
# load the package and some data
Expand Down
0