Skip to content

Commit

Permalink
Dataframe: fix bug introduced in e28a75a
Browse files Browse the repository at this point in the history
  • Loading branch information
pveber committed Nov 28, 2021
1 parent b27c15a commit 545d1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dataframe.ml
Expand Up @@ -96,7 +96,7 @@ let guess_rev_convert_col col =
try_with (revconv Int.of_string) col ~ok:ints
~error:(fun _ ->
try_with (revconv Float.of_string) col ~ok:floats
~error:(fun _ -> Array.of_list col |> strings)
~error:(fun _ -> Array.of_list_rev col |> strings)
)

let parse_lines ~file_has_header ncols lines f =
Expand Down

0 comments on commit 545d1d1

Please sign in to comment.