Hi, I’m trying to select a column from a table-like data set (it could be a database, a JuliaDB table and so on). In JuliaDB, this could be done using JuliaDB.select(dat, :var). But I want my package to be able to take in any kind of tables, not just JuliaDB tables.
So I tried the Tables.getcolumn(dat, :var) function from Tables.jl. However, it’s giving me this error message: ERROR: UndefVarError: getcolumn not defined. What did I miss? Thanks.