Unabridged printing of long strings, either in a Vector or in a DataFrame?

You can use PrettyTables.jl:

using DataFrames, PrettyTables
mytest = DataFrame(col1=1:3, col2=mystrings)
pretty_table(mytest,columns_width=[8,60], autowrap=true, crop=:none)

For vectors of long strings, simply do: println.(mystrings);

1 Like