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
import pandas as pd | |
import numpy as np | |
databankcrap = pd.read_csv('/Users/annacrotty/Downloads/contribrpt.csv') | |
opps = pd.DataFrame(columns=['Member ID','Campaign Name', 'Segment Code', 'Type', | |
'Method', 'Date', 'Amount']) | |
for x in range(0, 2270): |
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
# coding: utf-8 | |
# In[297]: | |
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
pd.options.display.max_rows = 2 |