| 14 |
|
if __name__ == '__main__': |
| 15 |
|
clientRawReportFile = r"C:\Test\ClientRawData.csv" |
| 16 |
|
outputFileNameAnalysis = r"C:\Test\ClientAnalysis.dat" |
| 17 |
+ |
outputFileNameStackedAnalysis = r"C:\Test\ClientStackedAnalysis.dat" |
| 18 |
|
outputFileNamePredictive = r"C:\Test\ClientAnalysisPrediction.dat" |
| 19 |
|
outputFileNameYearTotal = r"C:\Test\ClientAnalysisYearTotal.dat" |
| 20 |
|
rawReportContents = open(clientRawReportFile,'r').readlines() |
| 26 |
|
reportCategoryColumnNumb = 12 |
| 27 |
|
reportDateColumnNumb = 11 |
| 28 |
|
reportRevenueColumnNumb = 7 |
| 29 |
+ |
reportProjectNameColumnNumb = 3 |
| 30 |
|
|
| 31 |
|
esiReportMatrix = {} |
| 32 |
|
esiReportYearTotalMatrix = {} |