Suppose I have the following dataset:
dataset = Dataset[{
<|"t" -> {-3, -2, -1, 0, 1, 2, 3}|>,
<|"v" -> {4, -1, 3, 0, 2, -2, 5}|>}]
Why do I get a missing key when I extract a column?
dataset[[All, "v"]] // Normal
(* {Missing["KeyAbsent", "v"], {4, -1, 3, 0, 2, -2, 5}} *)