Visualize a table interactively with dataviewer
masterYou can create an interactive GUI to explore and plot tables using the dataviewer function from the Interact package. This is useful in Jupyter notebooks, Juno, or Blink windows.
import RDatasets
iris = RDatasets.dataset("datasets", "iris")
using StatsPlots, Interact
using Blink
w = Window()
body!(w, dataviewer(iris))