aq.from(cars)
.groupby("Origin")
.rollup({
meanHP: record => op.mean(record.Horsepower),
meanMPG: record => op.mean(record.Miles_per_Gallon),
maxCylinders: record => op.max(record.Cylinders),
minCylinders: record => op.min(record.Cylinders),
count: record => op.count()
})
.view()