I want to show plots in Dataset. Something like this
Table[<|"a" ->
ListPlot[RandomReal[1, 10], Frame -> True, ImageSize -> 200],
"b" ->
ListLinePlot[RandomReal[1, 10], Frame -> True,
ImageSize -> 200]|>, {i, 1, 5}] // Dataset
will give
You can see
- the Frame is not showing
- ImageSize is not working
How to correctly show plots in Dataset?




ds[5, 2] // Normalindicates that it has been stored correctly and theFrameis also there. A related discussion on dataset formatting is here – Syed Nov 15 '21 at 04:02