Skip to content

Commit 644e9d3

Browse files
committed
minor edit
1 parent 8a7206b commit 644e9d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lectures/two_auctions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,11 +424,11 @@ def evaluate_largest(v_hat, array, order=1):
424424
425425
We can check the accuracy of our `evaluate_largest` method by comparing it with an analytical solution.
426426
427-
We find that the evaluate_largest method functions well.
427+
We find that the `evaluate_largest` method functions well
428428
429429
```{code-cell} ipython3
430-
v_grid = np.linspace(0.3,1,8)
431-
bid_analytical = b_star(v_grid,N)
430+
v_grid = np.linspace(0.3, 1, 8)
431+
bid_analytical = b_star(v_grid, N)
432432
433433
# Redraw valuations
434434
v = np.random.uniform(0, 1, (N, R))

0 commit comments

Comments
 (0)