Skip to content

Commit

Permalink
Get rid of quotation marks in table
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Sep 26, 2023
1 parent 687ce97 commit 21d6ae6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/src/binary-classification.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 21d6ae6

Please sign in to comment.