From 0eb0e3c3309c15b747c7299195bc5d36e1221760 Mon Sep 17 00:00:00 2001 From: Ajinkya Kokandakar Date: Mon, 31 Mar 2025 00:12:46 -0500 Subject: [PATCH] added text to say nan correltion is printed as a dot --- docs/src/constructors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/constructors.md b/docs/src/constructors.md index b6cf4a642..a4d2ad66a 100644 --- a/docs/src/constructors.md +++ b/docs/src/constructors.md @@ -185,7 +185,7 @@ fit(MixedModel, @formula(reaction ~ 1 + days + (1|subj) + (days|subj)), sleepstu contrasts = Dict(:days => DummyCoding())) DisplayAs.Text(ans) # hide ``` -(Notice that the variance component for `days: 1` is estimated as zero, so the correlations for this component are undefined and expressed as `NaN`, not a number.) +(Notice that the variance component for `days: 1` is estimated as zero, so the correlations for this component are undefined, printed as a `.` in the output and internally represented as `NaN`, not a number.) An alternative is to force all the levels of `days` as indicators using `fulldummy` encoding. ```@docs