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);
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);