We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JuliaData/Tables.jl#306
n_grams = [ Dict("Hi" => 1, "name" => 1), Dict("name" => 1, "Sam" => 1), ] using Tables julia> Tables.istable(n_grams) # Tables 1.7.0 false julia> Tables.istable(n_grams) # Tables 1.8.0 true using TextAnalysis, ScientificTypes julia> scitype(n_grams) # Tables 1.7.0 AbstractVector{Multiset{Textual}} (alias for AbstractArray{Multiset{Textual}, 1}) julia> scitype(n_grams) # Tables 1.8.0 Table{Union{AbstractVector{Count}, AbstractVector{Union{Missing, Count}}}}
The text was updated successfully, but these errors were encountered:
Above ScientificTypes PR should resolve this issue.
Sorry, something went wrong.
ablaom
No branches or pull requests
JuliaData/Tables.jl#306
The text was updated successfully, but these errors were encountered: