Skip to content

Instantly share code, notes, and snippets.

View eirikbrandsaas's full-sized avatar

Eirik Eylands Brandås eirikbrandsaas

View GitHub Profile
@eirikbrandsaas
eirikbrandsaas / dataframe.jl
Created October 8, 2021 14:30
Memory issue with Dataframes.jl
using DataFrames
function inner_df(Nrow,Ncol)
df = DataFrame(rand(Nrow,Ncol),:auto)
end
function outer_df(N)
Nrow=76
Ncol=21
df=DataFrame(rand(0,Ncol),:auto)