Open floswald opened 5 months ago
I had to change your code like this:
dta = CSV.read(joinpath(@__DIR__,"..","robin-data","stata","USquarterly.raw"), DataFrame, header = false)
filter!(row -> (!ismissing(row.Column1)) && (!ismissing(row.Column4)), dta);
your filter call had isnan
which did not work.
that's the one? no header? how do you read it?