Skip to content

Commit 47a07cf

Browse files
authored
Fks missing Tt in fks (#8)
* Fixing error in Smoother * Fix plot sd for fks * Fix badge
1 parent cb1fe2a commit 47a07cf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

R/plot.fks.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ plot.fks <- function(x,
8383
if(is.finite(CI)){
8484
vv <- x$Vt[ahatt.idx[i], ahatt.idx[i], ]
8585
if( any(vv < -1e-10) ){ warning("Variane terms less then -1e-10") }
86-
vv <- pmax(vv,0)
86+
vv <- sqrt( pmax(vv,0) )
87+
8788
lines(xlim, x$ahatt[ahatt.idx[i],] + qnorm(0.5 - CI / 2) * vv,
8889
col = col.ahatt[i], lty = "dotted")
8990
lines(xlim, x$ahatt[ahatt.idx[i],] + qnorm(0.5 + CI / 2) * vv,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- badges: start -->
44
[![R-CMD-check](https://github.com/waternumbers/FKF/workflows/R-CMD-check/badge.svg)](https://github.com/waternumbers/FKF/actions)
5-
[![codecov](https://app.codecov.io/gh/waternumbers/FKF/branch/master/graph/badge.svg?token=XzqU2C6K8i)](https://app.codecov.io/gh/waternumbers/FKF)
5+
[![codecov](https://img.shields.io/codecov/c/gh/waternumbers/FKF/master)](https://app.codecov.io/gh/waternumbers/FKF)
66
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/waternumbers/FKF?branch=master&svg=true)](https://ci.appveyor.com/project/waternumbers/FKF)
77
<!-- badges: end -->
88

@@ -16,7 +16,7 @@ documentation is [https://CRAN.R-project.org/package=FKF](https://CRAN.R-project
1616
Development can be tracked via the [github repository](https://github.com/waternumbers/FKF)
1717
which contains source code for the package starting with version 0.1.5.
1818

19-
The latest developmental release canbe installed with
19+
The latest developmental release can be installed with
2020

2121
```
2222
devtools::install_github("waternumbers/FKF")

0 commit comments

Comments
 (0)