Is it possible, that DataFrame row has a name, like colums have? For instance: df[:GR,:col]

Is it possible, that DataFrame row has a name like columns have? For instance: df[:GR,:col]

P.S. I know that it can’t be done like df[df.name.==“GR”,:col]

thank you

Have a look at https://github.com/nalimilan/NamedArrays.jl

1 Like

It is not possible. Row key must be a column of the data frame - just as you have written.