Skip to content

Commit

Permalink
Lint example
Browse files Browse the repository at this point in the history
  • Loading branch information
reidjohnson committed Oct 4, 2023
1 parent 56d6d8c commit f837d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/plot_quantile_toy_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def make_toy_dataset(n_samples, seed=0):
f = x * np.sin(x)

sigma = 0.25 + x / 10
noise = rng.lognormal(sigma=sigma) - np.exp(sigma ** 2 / 2)
noise = rng.lognormal(sigma=sigma) - np.exp(sigma**2 / 2)
y = f + noise

return np.atleast_2d(x).T, y
Expand Down

0 comments on commit f837d4b

Please sign in to comment.