JuliaML / TableTransforms.jl

Transforms and pipelines with tabular data in Julia
https://juliaml.github.io/TableTransforms.jl/stable
MIT License
103 stars 15 forks source link

Filter not working properly with some tables #178

Closed juliohm closed 1 year ago

juliohm commented 1 year ago

MWE:

using DataFrames
using TableTransforms
using CSV

htable = download(
    "https://zenodo.org/record/7051975/files/drillholes.csv?download=1"
) |> CSV.File |> DataFrame

drillholes = georef(htable, (:X,:Y,:Z))

drillholes |> Filter(sample -> sample."Au ppm" > 0.9)