Skip to content

Instantly share code, notes, and snippets.

@coreyauger
Created May 9, 2018 21:07
Show Gist options
  • Save coreyauger/035d15627a5b2b0ae0cbcd5df4a50f26 to your computer and use it in GitHub Desktop.
Save coreyauger/035d15627a5b2b0ae0cbcd5df4a50f26 to your computer and use it in GitHub Desktop.
normalise
from sklearn import preprocessing
def scale(data):
return preprocessing.scale(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment