Skip to content

Commit 0fbca81

Browse files
authored
Update README.md
1 parent 33c2779 commit 0fbca81

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

README.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,33 @@
22

33
**Python-challenge**
44
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)
30+
```
31+
632
**2.Pypoll**
733

834

0 commit comments

Comments
 (0)