Skip to content

Instantly share code, notes, and snippets.

@daynebatten
Created March 20, 2015 11:48
Show Gist options
  • Select an option

  • Save daynebatten/ed7a41499fd9970b2d68 to your computer and use it in GitHub Desktop.

Select an option

Save daynebatten/ed7a41499fd9970b2d68 to your computer and use it in GitHub Desktop.
create temp table
train
as select
*
from
fullvoters
where
split >= .01;
create temp table
test
as select
*
from
fullvoters
where
split < .01;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment