You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,33 @@
2
2
3
3
**Python-challenge**
4
4
Wrote two python codes
5
-
**1.Pybank**
5
+
**1.Pybank**
6
+
In this assignment I created a Python script for analyzing the financial records of the company. I used the financial data called [budget_data.csv](PyBank/Resources/budget_data.csv). The dataset is composed of two columns: `Date` and `Profit/Losses`.
7
+
8
+
* Created a Python script that analyzes the records to calculate each of the following:
9
+
10
+
* The total number of months included in the dataset
11
+
12
+
* The net total amount of "Profit/Losses" over the entire period
13
+
14
+
* The average of the changes in "Profit/Losses" over the entire period
15
+
16
+
* The greatest increase in profits (date and amount) over the entire period
17
+
18
+
* The greatest decrease in losses (date and amount) over the entire period
19
+
20
+
analysis of the script is given below:
21
+
22
+
```text
23
+
Financial Analysis
24
+
----------------------------
25
+
Total Months: 86
26
+
Total: $38382578
27
+
Average Change: $-2315.12
28
+
Greatest Increase in Profits: Feb-2012 ($1926159)
29
+
Greatest Decrease in Profits: Sep-2013 ($-2196167)
0 commit comments