-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
Hello,
I tried to load a small dataset and it seems to take a lot of time to do so. It also seems that using Queryverse takes a significant amount of time.
@time using Queryverse
17.643986 seconds (43.33 M allocations: 2.193 GiB, 6.44% gc time)
@time df = DataFrame(load("iris.csv"))
17.341491 seconds (55.15 M allocations: 2.607 GiB, 11.01% gc time)
The second time I load data is much faster though.
@time df = DataFrame(load("iris.csv"))
0.001057 seconds (5.01 k allocations: 210.609 KiB)
Is there a command to precompile or another way to make this faster?