From bcf2fff0d68bbc75996d2d75fea129f4eacf3fe0 Mon Sep 17 00:00:00 2001 From: Vladimir Mikheev <33777074+vladdez@users.noreply.github.com> Date: Tue, 16 Apr 2024 14:31:35 +0200 Subject: [PATCH] Update index.md (#187) Co-authored-by: Benedikt Ehinger --- docs/src/index.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/src/index.md b/docs/src/index.md index d20ca069..8b5eae3e 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -13,15 +13,16 @@ In case you want to understand the toolbox better, we plan to offer **technical ## Quick start There are four different model types currently "fitable" -1. Timeexpansion **No**, Mixed **No** : `fit(UnfoldModel,[Any=>(f,-0.1:0.01:0.5)],evts,data_epoch)` -1. Timeexpansion **Yes**, Mixed **No** : `fit(UnfoldModel,[Any=>(f,basisfunction)],evts,data)` -1. Timeexpansion **No**, Mixed **Yes** : `fit(UnfoldModel,[Any=>(fLMM,-0.1:0.01:0.5)],evts,data_epoch)` -1. Timeexpansion **Yes**, Mixed **Yes**: `fit(UnfoldModel,[Any=>(fLMM,basisfunction)],evts,data)` +1. Timeexpansion **No**, Mixed **No** : `fit(UnfoldModel, [Any=>(f, -0.1:0.01:0.5)], evts, data_epoch)` +1. Timeexpansion **Yes**, Mixed **No** : `fit(UnfoldModel, [Any=>(f, basisfunction)], evts, data)` +1. Timeexpansion **No**, Mixed **Yes** : `fit(UnfoldModel, [Any=>(fLMM, -0.1:0.01:0.5)], evts, data_epoch)` +1. Timeexpansion **Yes**, Mixed **Yes**: `fit(UnfoldModel, [Any=>(fLMM, basisfunction)], evts, data)` With + ```julia -f = @formula 0~1+condition -fLMM = @formula 0~1+condition+(1|subject) + (1|item) -basisfunction = firbasis(τ=(-0.1,0.5),sfreq=100")) +f = @formula 0 ~ 1 + condition +fLMM = @formula 0 ~ 1 + condition + (1|subject) + (1|item) +basisfunction = firbasis(τ = (-0.1,0.5), sfreq = 100)) ```