Suppose I have the following Dataset: 
I want to use ListPlot to produce a plot of v (voltage) vs. t (time). Seems quite simple and straightforward, but I didn't find an answer on the net. I was thinking about doing
ListPlot[Thread[{mydata[All, "t"], mydata[All, "v"]}]]
but mydata[All, "t"]
gives an error:
Failure[Dataset,Association["MessageTemplate" :> MessageName[Dataset, "partnotapplicable"],"MessageParameters" -> Association["Type" -> TypeSystem`Vector[TypeSystem`AnyType, 2], "Part" -> "t","Symbol" -> Part]]]
I wouldn't be surprised to learn that there is a short way to do that, without the use of Thread
.