From 21d6ae66c19b736cf7dd35d570d793244fffd75b Mon Sep 17 00:00:00 2001 From: Rik Huijzer Date: Tue, 26 Sep 2023 15:21:50 +0200 Subject: [PATCH] Get rid of quotation marks in table --- docs/src/binary-classification.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/binary-classification.jl b/docs/src/binary-classification.jl index 1e6fc4b..fa72d8d 100644 --- a/docs/src/binary-classification.jl +++ b/docs/src/binary-classification.jl @@ -698,6 +698,9 @@ results = let text = string(score) length(text) < 4 ? text * '0' : text end + for col in names(df) + df[!, col] = Base.Text.(df[:, col]) + end rename!(df, :se => "1.96*SE") end