Hi everyone,
I’m very new to Julia and have been working through replicating a relatively simple R script in Julia 1.0.
Currently it’s a data cleaning exercise and I’ve been using DataFrames and DataFramesMeta, as I am most comfortable using dplyr type syntax.
I’ve read in some data from a csv file, executed a few melt, unstack, and filter type operations and now I have two dataframes that I want to row bind. I’ve tried the append! function but for some reason it won’t work. I can just use the standard [df1; df2] approach to concatenate, but I’d like to understand why the append! function fails.
I’ve ensured that the column types in both dataframes are identical, but I don’t know how to check for further properties of the dataframes that could be causing issues. If I was using R I’d suspect the issue was something like one of the dataframes being grouped, except I haven’t grouped either dataframe. I’m not sure of what pooling is exactly except that it appears it is used as a memory saving device when referencing strings in a dataframe. I don’t know why this would cause an issue with appending one dataframe to another.
Is anyone able to suggest how I could go about investigating this further? Is there a way to me to check if a dataframe is pooled?
I can’t share the data just yet as it is a bit sensitive and I haven’t had a chance to try to replicate the error.
Cheers
Jeff