Suppose I have the following dataset:
dataset = Dataset[{
<|"t" -> 1, "v1" -> 1, "v2" -> 3|>,
<|"t" -> 2, "v1" -> 2, "v2" -> 5|>,
<|"t" -> 3, "v1" -> 3, "v2" -> -2|>,
<|"t" -> 4, "v1" -> 4, "v2" -> 1|>,
<|"t" -> 5, "v1" -> 3, "v2" -> 0|>,
<|"t" -> 6, "v1" -> 1, "v2" -> 4|>}]

I now want to create a ListPlot of t
vs v1
.
What I do now is
ListPlot[
Thread[{
dataset[All, "t"] // Normal
,
dataset[All, "v2"] // Normal
}]
]
but I I don't find it very efficient.
Is there another way to get this plot that makes use of the dataset headers?