>>> wc = wordcloud(x = corpus)
> ERROR: TypeError: typeassert: expected AbstractArray{T,1}, got Array{Any,2}
>
> Do you have any suggestion about how to convert an Array{Any,2} to an
> AbstractVector? Or how to read a text file to an AbstractVector variable?Have you tried to just flatten the array: wc = wordcloud(x = corpus[:])
