Answered step by step
Verified Expert Solution
Question
1 Approved Answer
i am having trouble with indexing in python. any help is appreciated thanks Level 2 Questions 1. What is the average amount of loans made
i am having trouble with indexing in python. any help is appreciated thanks
Level 2 Questions 1. What is the average amount of loans made to people in the Philippines? 2. In which country was the loan granted that took the longest to fund? 3. What is the average amount of time / dollar it takes to fund a loan? 4. What is the standard deviation of the money loaned? The Empirical Rule or 68-95-99.7% Rule reminds us that 68% of the population falls within 1 standard deviation. Does this hold for our data? 5. Is there a relationship between the loan amount and the number of people? Or time to fund? How would we measure this? Covariance? Correlation? The index positions for the Phillipines are [5, 6, 9, 11, 13, 14, 22] Use that information to compute the average loan amount for the Phillipines. Store your result in the variable p_average Save & Run Load History Show CodeLens Pair? 1 # Your code here To keep your coding easier and cleaner we will show you these lists here, but they will be automatically included for you in later activecodes. You can just use the list by name and it will be fine. Save & Run Load History Show CodeLens Pair? 1 loan amount = (1250.0, 500.0, 1450.0, 200.0, 700.0, 100.0, 250.0, 225.0, 1200.0, 15 3 country_name = ('Azerbaijan', 'El Salvador', 'Bolivia', 'Paraguay', 'El Salvador', 5 time_to_raise = (193075.0, 1157108.0, 1552939.0, 244945.0, 238797.0, 1248909.0, 775 7 num_lenders_total = (38, 18, 51, 3, 21, 1, 10, 8, 42, 1, 18, 6, 28, 5, 16, 7, 54, 1 Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started