Skip to content

Commit

Permalink
0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleoel committed Jan 9, 2021
1 parent 48a288b commit 50d21f4
Show file tree
Hide file tree
Showing 38 changed files with 792 additions and 1,676 deletions.
11 changes: 11 additions & 0 deletions .notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,14 @@ Cppopt original https://journals.lww.com/ccmjournal/Abstract/2012/08000/Continuo

#BEST WEBPAGE FOR SUBMISSION
https://www.r-bloggers.com/2020/07/how-to-write-your-own-r-package-and-publish-it-on-cran/

#Upload scripts
devtools::run_examples()
devtools::check()
devtools::check_rhub()
devtools::check_win_devel()
devtools::document()
devtools::spell_check()
devtools::check()
usethis::use_cran_comments()
devtools::release()
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
Type: Package
Package: clinmon
Title: Calculation of Hemodynamic Indexes from Clinical Monitoring
Version: 0.3.0
Title: Hemodynamic Indexes Calculated from Clinical Monitoring
Version: 0.5.1
Authors@R: c(
person("Markus Harboe", "Olsen", email = "oel@oelfam.com", role = c("cre","aut")),
person("Christian", "Riberholt", role = "aut"))
Description:
Every research team have their own script for calculation of hemodynamic indexes.
This package makes it possible to insert a long-format dataframe, and add both
periods of interest (trigger-periods), and delete artifacts with deleter-files.
The calculation methods are based on Czosnyka et al. (1996) <doi:10.1161/01.str.27.10.1829>.
License: MIT + file LICENSE
URL: https://github.com/lilleoel/clinmon
BugReports: https://github.com/cosimameyer/overviewR/issues
Expand All @@ -19,5 +18,6 @@ Encoding: UTF-8
Language: en-US
LazyData: true
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE)
Suggests: knitr, rmarkdown
VignetteBuilder: knitr
15 changes: 2 additions & 13 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
importFrom("stats", "aggregate", "cor","ave","na.omit")
importFrom("stats", "aggregate", "ave", "cor")

# Correlation based indices.
export(Mx)
export(Dx)
export(Sx)
export(PRx)

#Other
export(PI)
export(PWA)
export(RI)
export(CVRi)
export(CO)
export(clinmon)
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ And constructed with the following guidelines:

* Bug fixes and misc changes bumps the patch

<b>CHANGES</b> IN <a href="https://github.com/lilleoel/clinmon" target="_blank">clinmon</a> VERSION 0.5.1
----------------------------------------------------------------

* Simplified the package, to calculate all the indexes in `clinmon()`. `clinmon()` uses a *continuous* recording and returns a dataframe with haemodynamic indexes for every period, epoch or block depending on the chosen output. Includes `COest`, `CVRi`, `Dx`, `Mx`, `PI`, `PRx`, `PWA`, `RI`, and `Sx` (see details).

<b>CHANGES</b> IN <a href="https://github.com/lilleoel/clinmon" target="_blank">clinmon</a> VERSION 0.2.1
----------------------------------------------------------------

Expand Down
36 changes: 0 additions & 36 deletions R/CO.R

This file was deleted.

5 changes: 0 additions & 5 deletions R/CPPopt.R

This file was deleted.

41 changes: 0 additions & 41 deletions R/CVRi.R

This file was deleted.

34 changes: 0 additions & 34 deletions R/Dx.R

This file was deleted.

76 changes: 0 additions & 76 deletions R/Mx.R

This file was deleted.

37 changes: 0 additions & 37 deletions R/PI.R

This file was deleted.

34 changes: 0 additions & 34 deletions R/PRx.R

This file was deleted.

36 changes: 0 additions & 36 deletions R/PWA.R

This file was deleted.

Loading

0 comments on commit 50d21f4

Please sign in to comment.