Commit bce7d253 by Dave Foote

pipeline and pygrabber shells

parent 1f1d026d
Showing with 27 additions and 0 deletions
import pandas as pd
#import tree as tp
cred_data = pd.read_csv('credit-data.csv')
'''
Dave-
this is you from the past.
get all of the tree/pandas/record linkage files
from the last two classes and get them onto this computer so we can
use our old code
'''
import shutil
import os
#source = path to directory
destination = '/Users/dave/machine_learning'
for root, dirs, files in os.walk(source):
for file in files:
if file.endswith('.py'):
src = fullpath(source, file)
shutil.move(src, fullpath(destination, file))
if __name__=="__main__":
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment