I encounter an error when i improperly attempt to use the length() function on a dataframe.
The error message ends up printing the entire dataframe like so:
Error: MethodError(length, (5189Γ16 DataFrame
and then it prints over 5k rows of the dataframe.
How do i avoid printing the entire dataframe when the error is caught?
right, so as you can see when you print the error it ends up printing the entire dataframe argument.
i donβt want that since iβm dealing with very large dataframes (millions of rows potentially)
thanks for opening the issue.
in searching for possible solutions, i encountered the ClearStacktrace.jl package. i donβt see how what they do there could help me. also the package is probably outdated since they overload Base.show_stacktrace which doesnβt seem to exist anymore.