From 61a74258cec3fd13eefe76c4a52a1043003e3b49 Mon Sep 17 00:00:00 2001 From: PharmCat Date: Sat, 20 Feb 2021 19:06:16 +0300 Subject: [PATCH] update --- docs/src/instanduse.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/instanduse.md b/docs/src/instanduse.md index d95ffd64..4c284917 100644 --- a/docs/src/instanduse.md +++ b/docs/src/instanduse.md @@ -17,7 +17,7 @@ Load provided data with CSV and DataFrames: ```@example lmmexample using Metida, CSV, DataFrames -df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv")) |> DataFrame; +df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv")) |> DataFrame; nothing # hide ``` !!! note @@ -29,7 +29,7 @@ df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv")) categorical!(df, :subject); categorical!(df, :period); categorical!(df, :sequence); -categorical!(df, :formulation); +categorical!(df, :formulation); nothing # hide ``` #### Step 2: Make model