Closed lukaszgajewski closed 7 months ago
There were two bugs in the jupyter notebook showing how to find the gravity model exponent value: 1) vr = np.cumsum(y)[::-1]; should be np.cumsum(y[::-1])[::-1] 2) best_a+1; should be best_a-1 This PR fixes this.
There were two bugs in the jupyter notebook showing how to find the gravity model exponent value: 1) vr = np.cumsum(y)[::-1]; should be np.cumsum(y[::-1])[::-1] 2) best_a+1; should be best_a-1 This PR fixes this.