Skip to content

Commit

Permalink
ready for release v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanB95 committed Jul 13, 2020
1 parent 18a5392 commit 5741eb6
Show file tree
Hide file tree
Showing 39 changed files with 1,234 additions and 224 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: statespacer
Version: 0.1.0.9000
Date: 2020-06-29
Version: 0.2.0
Date: 2020-07-13
Title: State Space Modelling in 'R'
Description: A tool that makes estimating models in state space form
a breeze. See "Time Series Analysis by State Space Methods" by
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# statespacer 0.2.0 (in development)
# statespacer 0.2.0

## Breaking changes

Expand Down Expand Up @@ -26,6 +26,8 @@

* y_temp outside of LogLikelihood function.

* Easier to find proper initial values, reducing time spent on trial and error by the user.

## Extra functionality

* Printing progress now optional using `verbose = TRUE`.
Expand Down
6 changes: 3 additions & 3 deletions R/zzz.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.onAttach <- function(libname, pkgname) {
packageStartupMessage(paste("Welcome to the", pkgname, "package!"))
}
.onUnload <- function (libpath) {
library.dynam.unload("statespacer", libpath)
}
19 changes: 4 additions & 15 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
## Resubmission
This is a resubmission. In this version I have:

* Quoted R with undirected single quotes in title field in DESCRIPTION.

* Added reference in description field in DESCRIPTION.

* Removed capital letters in description field in DESCRIPTION.

## Test environments
* local OS X install, R 3.6.3
* ubuntu 14.04 (on travis-ci), R 3.6.3
* win-builder (devel and release)
* local R installation, R 4.0.2
* ubuntu 16.04 (on travis-ci), R 4.0.2
* win-builder (devel)

## R CMD check results

0 errors | 0 warnings | 1 note

* This is a new release.
0 errors | 0 warnings | 0 notes
2 changes: 1 addition & 1 deletion docs/404.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/CODE_OF_CONDUCT.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/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/LICENSE.html

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

40 changes: 21 additions & 19 deletions docs/articles/boxjenkins.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');
}
}
}
});
12 changes: 12 additions & 0 deletions docs/articles/boxjenkins_files/header-attrs-2.3/header-attrs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to
// be compatible with the behavior of Pandoc < 2.8).
document.addEventListener('DOMContentLoaded', function(e) {
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child");
var i, h, a;
for (i = 0; i < hs.length; i++) {
h = hs[i];
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6
a = h.attributes;
while (a.length > 0) h.removeAttribute(a[0].name);
}
});
Loading

0 comments on commit 5741eb6

Please sign in to comment.