Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created November 7, 2019 14:23
Show Gist options
  • Save mdfarragher/91ecc33c3c983533a0370115239d0243 to your computer and use it in GitHub Desktop.
Save mdfarragher/91ecc33c3c983533a0370115239d0243 to your computer and use it in GitHub Desktop.
// keep only records with a median house value <= 500,000
data = context.Data.FilterRowsByColumn(
data,
"MedianHouseValue",
upperBound: 500_000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment