This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python27 | |
| ## I wrote this so that I could look at the results of a multiple models without worrying about the arguments and parameters | |
| ## right off the bat. I also wanted a script that would easy the process of splitting data (only handles one input and one output column). | |
| import numpy as np | |
| import pandas as pd | |
| import types | |
| class data(object): |
NewerOlder