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
In the example below, what is the best way to define y without allocating x
y
x
Is this how it should be done?
using DataFrames x=repeat(vcat("someString"),1_000_000)); y = DataFrames.PooledArrays.PooledArray(x) invpool=Dict{String,UInt8}("someString"=>1) pool=DataFrames.PooledArrays._invert(invpool) refs=repeat(vcat(UInt8(1)),1_000_000) y2 = DataFrames.PooledArray(DataFrames.PooledArrays.RefArray(refs),invpool,pool) @assert isequal(y,y2)
The text was updated successfully, but these errors were encountered:
Please use the Discourse forum for questions, and keep GitHub for bug reports. Thanks!
Sorry, something went wrong.
No branches or pull requests
In the example below, what is the best way to define
y
without allocatingx
Is this how it should be done?
The text was updated successfully, but these errors were encountered: