Skip to content

Commit

Permalink
CRAN 0.2.0 is live
Browse files Browse the repository at this point in the history
  • Loading branch information
joachim-gassen committed May 12, 2018
1 parent 7347b6d commit 3e60223
Show file tree
Hide file tree
Showing 10 changed files with 135 additions and 20 deletions.
31 changes: 28 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ library(knitr)

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Travis-CI Build Status](https://travis-ci.org/joachim-gassen/ExPanDaR.svg?branch=master)](https://travis-ci.org/joachim-gassen/ExPanDaR)

[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ExPanDaR)](https://cran.r-project.org/package=ExPanDaR)

## Overview

Expand All @@ -39,21 +39,46 @@ If you want to analyze your own panel data instead, you can also access a varian

## Installation

Finally, if you are in for the full treat and want to
test ExPanD from within R, run the following in your R session to install the ExPanDaR package and start exploring World Bank data.
If you are in for the full treat and want to test ExPanD from within R, run the following
in your R session to install the ExPanDaR package from CRAN.

```{r, eval=FALSE}
install.packages("ExPanDaR")
library(ExPanDaR)
````

Or, if you want to install the current development version from Github:

```{r, eval=FALSE}
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github("joachim-gassen/ExPanDaR")
library(ExPanDaR)
````


## Basic Usage

You can either start ExPanD without arguments so that it starts with a file upload dialog...

```{r, eval=FALSE}
ExPanD()
````

...or start with one of the two example datasets that come with the package:

```{r, eval=FALSE}
ExPanD(df = worldbank,
df_def = worldbank_data_def,
var_def = worldbank_var_def,
df_name = "World Bank Data",
config_list = ExPanD_config_worldbank)
ExPanD(df = russell_3000,
df_def = russell_3000_data_def,
df_name = "Russell 3000",
config_list = ExPanD_config_russell_3000)
````


Expand Down
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ExPanDaR: Explore Panel Data Interactively <img src="logo.png" align="right" />
===============================================================================

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) [![Travis-CI Build Status](https://travis-ci.org/joachim-gassen/ExPanDaR.svg?branch=master)](https://travis-ci.org/joachim-gassen/ExPanDaR)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) [![Travis-CI Build Status](https://travis-ci.org/joachim-gassen/ExPanDaR.svg?branch=master)](https://travis-ci.org/joachim-gassen/ExPanDaR) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/ExPanDaR)](https://cran.r-project.org/package=ExPanDaR)

Overview
--------
Expand All @@ -27,20 +27,45 @@ If you want to analyze your own panel data instead, you can also access a varian
Installation
------------

Finally, if you are in for the full treat and want to test ExPanD from within R, run the following in your R session to install the ExPanDaR package and start exploring World Bank data.
If you are in for the full treat and want to test ExPanD from within R, run the following in your R session to install the ExPanDaR package from CRAN.

``` r
install.packages("ExPanDaR")
library(ExPanDaR)
```

Or, if you want to install the current development version from Github:

``` r
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github("joachim-gassen/ExPanDaR")
library(ExPanDaR)
```

Basic Usage
-----------

You can either start ExPanD without arguments so that it starts with a file upload dialog...

``` r
ExPanD()
```

...or start with one of the two example datasets that come with the package:

``` r
ExPanD(df = worldbank,
df_def = worldbank_data_def,
var_def = worldbank_var_def,
df_name = "World Bank Data",
config_list = ExPanD_config_worldbank)

ExPanD(df = russell_3000,
df_def = russell_3000_data_def,
df_name = "Russell 3000",
config_list = ExPanD_config_russell_3000)
```

Further Information
Expand Down
2 changes: 1 addition & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ template:
params:
ganalytics: UA-119053376-1
development:
mode: unreleased
mode: release
navbar:
structure:
left:
Expand Down
5 changes: 4 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@
## Resubmission
This is a resubmission. In this version I have:

* Reduced the amount of data and the quality of the jpgs in the vognettes
* Reduced the amount of data and the quality of the jpegs in the vignettes
so that the total size of the source tar ball is below 5 MB

* Rewritten the DESCRIPTION file to avoid redundancies

* Put all references to software in the DESCRIPTION file in single quotes

* I did not add any paper references to the Description field as the package
uses standard EDA methodology.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

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

2 changes: 1 addition & 1 deletion docs/articles/index.html

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

2 changes: 1 addition & 1 deletion docs/authors.html

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

42 changes: 35 additions & 7 deletions docs/index.html

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

2 changes: 1 addition & 1 deletion docs/reference/index.html

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

38 changes: 36 additions & 2 deletions index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ library(knitr)

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Travis-CI Build Status](https://travis-ci.org/joachim-gassen/ExPanDaR.svg?branch=master)](https://travis-ci.org/joachim-gassen/ExPanDaR)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ExPanDaR)](https://cran.r-project.org/package=ExPanDaR)


## Overview

This is the documentation of the ExPanDaR (Explore Panel Data with R) package. ExPanDaR provides the code base for the ExPanD web app. ExPanD is a shiny based app supporting interactive exploratory data analysis.

ExPanD has two purposes:
Expand All @@ -36,23 +39,54 @@ If you are interested to see what ExPanD has to offer without diving into R, cli

If you want to analyze your own panel data instead, you can also access a variant of ExPanD app [here](https://jgassen.shinyapps.io/expand/) that allows user-side data uploads. No worries: Your data won't be stored on the server and will get erased from memory as soon as you close the web connection.

Finally, if you are in for the full treat and want to
test ExPanD from within R, run the following in your R session to start exploring World Bank data.

## Installation

If you are in for the full treat and want to test ExPanD from within R, run the following
in your R session to install the ExPanDaR package from CRAN.

```{r, eval=FALSE}
install.packages("ExPanDaR")
library(ExPanDaR)
````

Or, if you want to install the current development version from Github:

```{r, eval=FALSE}
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github("joachim-gassen/ExPanDaR")
library(ExPanDaR)
````


## Basic Usage

You can either start ExPanD without arguments so that it starts with a file upload dialog...

```{r, eval=FALSE}
ExPanD()
````

...or start with one of the two example datasets that come with the package:

```{r, eval=FALSE}
ExPanD(df = worldbank,
df_def = worldbank_data_def,
var_def = worldbank_var_def,
df_name = "World Bank Data",
config_list = ExPanD_config_worldbank)
ExPanD(df = russell_3000,
df_def = russell_3000_data_def,
df_name = "Russell 3000",
config_list = ExPanD_config_russell_3000)
````


## Further Information

For further information, please refer to the articles and function call references available on this page.

Enjoy!

0 comments on commit 3e60223

Please sign in to comment.