Skip to content

Commit

Permalink
update changelog, readme & description with version, build site
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolalove committed Dec 11, 2020
1 parent b756888 commit e8ed50b
Show file tree
Hide file tree
Showing 32 changed files with 521 additions and 49 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.Rhistory
.RData
Meta

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: timeseries
Title: Plotting grouped time series data
Version: 0.1.0
Version: 0.2.0
Authors@R:
person(given = "Nicola",
family = "Love",
Expand Down
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# timeseries 0.2.0

:rocket: :alarm_clock: :rocket:

* Added a new function, `qstacktseries`, a stacked area plot
+ updated documentation, readme and description files accordingly
+ created a vignette for `qstacktseries`
+ developed tests for `qstacktseries`

* Fixed the typo in the name of the `qtseries ` vignette - vignette now has the same name as the function
* Added `build_vignettes = TRUE` and `ref = "v0.2.0"` to the installation command in the package `README`
* Moved the `gapminder` and `rlang` under *suggests* from *imports* (as they are only used in the tests)

Take a look at the `qstacktseries` vignette to get a sense of how this function could be used.

# timeseries 0.1.0

* Added `stop()` messages to the `qtseries()` function to force the *time* and *voi* inputs to be numeric
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The goal of `timeseries` is to speed up the initial stages of data exploration b
## Installation

``` r
devtools::install_github("nicolalove/timeseries", build_vignettes = TRUE, ref = "v0.1.0")
devtools::install_github("nicolalove/timeseries", build_vignettes = TRUE, ref = "v0.2.0")
```

## Package Development
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ patterns in data set.
## Installation

``` r
devtools::install_github("nicolalove/timeseries", build_vignettes = TRUE, ref = "v0.1.0")
devtools::install_github("nicolalove/timeseries", build_vignettes = TRUE, ref = "v0.2.0")
```

## Package Development
Expand Down
Binary file modified docs/._index.html
Binary file not shown.
5 changes: 4 additions & 1 deletion docs/404.html

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

5 changes: 4 additions & 1 deletion docs/CODE_OF_CONDUCT.html

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

5 changes: 4 additions & 1 deletion docs/LICENSE-text.html

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

5 changes: 4 additions & 1 deletion docs/LICENSE.html

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

7 changes: 6 additions & 1 deletion docs/articles/index.html

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

157 changes: 157 additions & 0 deletions docs/articles/qstacktseries.html

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
// v0.0.1
// Written by JooYoung Seo ([email protected]) and Atsushi Yasumoto on June 1st, 2020.

document.addEventListener('DOMContentLoaded', function() {
const codeList = document.getElementsByClassName("sourceCode");
for (var i = 0; i < codeList.length; i++) {
var linkList = codeList[i].getElementsByTagName('a');
for (var j = 0; j < linkList.length; j++) {
if (linkList[j].innerHTML === "") {
linkList[j].setAttribute('aria-hidden', 'true');
}
}
}
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e8ed50b

Please sign in to comment.