a b/man/ExpMean.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/scAI_model.R
3
\name{ExpMean}
4
\alias{ExpMean}
5
\title{Calculate the mean of logged values}
6
\usage{
7
ExpMean(x)
8
}
9
\arguments{
10
\item{x}{A vector of values}
11
}
12
\value{
13
Returns the mean in log-space
14
}
15
\description{
16
Calculate mean of logged values in non-log space (return answer in log-space)
17
}
18
\examples{
19
ExpMean(x = c(1, 2, 3))
20
21
}