CODE CHALLENGE:
- Fix the code in the code tab to pass this challenge (only syntax errors). Look at the examples below to get an idea of what the function should do. Examples
cubes(3) ➞ 27
cubes(5) ➞ 125
cubes(10) ➞ 1000
def cubes(a):
retunr a ** 3
}
- There is a single operator in JavaScript, capable of providing the remainder of a division operation. Two numbers are passed as parameters. The first parameter divided by the second parameter will have a remainder, possibly zero. Return that value. Examples
remainder(1, 3) ➞ 1
remainder(3, 4) ➞ 3
remainder(-9, 45) ➞ -9
remainder(5, 5) ➞ 0
function remainder(x, y) {
}
This repo will contain the data and necessary codes needed to complete coding assignment for DFS MRM Mail interview.
Included in this repo are model scores for a model which was recently validated by Model Risk Management. Your job is to develop a simple application that allows users to upload model scores and get the Population Stability Index (PSI) using the Python Script link provided.
Moreover, plot a distribution of the model scores.
You are free to use google in this exercise. Codes must be clearly documented or commeted and be readable. Furthermore, we have included an example of an application we recently developed to help with validation of Models.
Please refer to this repo for the PSI function: https://github.com/mwburke/population-stability-index