relBackgroundLL {EffectsRelBaseline} | R Documentation |
Compute the log-likelihood ratio of the grouped responses being obtained from a background distribution given its mean and variance.
relBackgroundLL(resp, groups, backMean, backVar)
resp |
response values |
groups |
grouping variables (will be treated as factors) |
backMean |
mean of the background distribution |
backVar |
variance of the background distribution |
log-likelihood ratio
This is the log-likelihood ratio of the changes from background test (CBT). It is included here for comparison.
Peter N. Steinmetz <PeterNSteinmetz@steinmetz.org>
Steinmetz, P.N. & Thorp, C.K. (2013) Testing for effects of different stimuli on neuronal firing relative to background activity. Journal of Neural Engineering, in review.
fRatioStat,LL1WayAnova,sumSqCat
# calculate test statistic for one cluster
data(ef)
df<-subset(ef,clustId=='ch26cl3')
relBackgroundLL(df$absResp,df$race,mean(df$absBkg),var(df$absBkg))