public static SandDanceExplorer ExploreWithSandDance(this IDataView source)
        {
            var explorer = new SandDanceExplorer();

            explorer.LoadData(source.ToTabularJsonString());
            return(explorer);
        }
 public static void Explore(this IDataView source)
 {
     KernelInvocationContext.Current.Display(
         source.ToTabularJsonString(),
         HtmlFormatter.MimeType);
 }