This repo contains Python code to generate the global dataset of factor returns, stock returns, and firm characteristics from “Is there a Replication Crisis in Finance?” by Jensen, Kelly, and Pedersen ...
def make_amount(rupees_to_make,no_of_five,no_of_one): five_needed=min(rupees_to_make//5,no_of_five) one_needed= rupees_to_make - (five_needed * 5) ...