Skip to content

Commit

Permalink
Release of v0.1.2
Browse files Browse the repository at this point in the history
Minor bug fixes, release of v0.1.2
  • Loading branch information
FabbriniMarco committed Jul 24, 2023
1 parent 655844e commit 9fadb3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .Rproj.user/BB3C8263/sources/prop/01C8956C
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"source_window_id": "",
"Source": "Source",
"cursorPosition": "908,0",
"scrollLine": "897",
"cursorPosition": "11,32",
"scrollLine": "0",
"docOutlineVisible": "1"
}
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: microbAIDeR
Type: Package
Title: An ensemble of function for easier and quicker preliminary microbiome analysis
Version: 0.1.1
Version: 0.1.2
Author: c(person("Marco", "Fabbrini", role = c("aut", "cre"),
email = "m.fabbrini@unibo.it")
Maintainer: Marco Fabbrini <m.fabbrini@unibo.it>
Expand Down
5 changes: 3 additions & 2 deletions R/microbAIDeR_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -695,9 +695,10 @@ sem <- function(x) {
}


se.avg <- function(x){
se.median <- function(x){
x = x[!is.na(x)]
sd(x) / sqrt(length(x))
se.med <- 1.2533 * iqr / sqrt(length(x))
return(se.med)
}


Expand Down

0 comments on commit 9fadb3a

Please sign in to comment.