Data Explorer
An interactive data exploration tool that lets you filter, summarize, and drill down.
Explore datasets interactively by processing subsets and reviewing statistics.
from gdtest_sec_index_hero import process, summarize
dataset = [5, 10, 15, 20, 25, 30, 35, 40]
# Filter to values above 15
subset = [x for x in process(dataset) if x > 15]
print(summarize(subset))