We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b86fc commit 819b322Copy full SHA for 819b322
benchmarks/bench_plot_lasso_path.py
@@ -92,7 +92,7 @@ def compute_bench(samples_range, features_range):
92
93
fig = plt.figure()
94
i = 1
95
- for c, (label, timings) in zip('bcry', sorted(results.iteritems())):
+ for c, (label, timings) in zip('bcry', sorted(results.items())):
96
ax = fig.add_subplot(2, 2, i, projection='3d')
97
X, Y = np.meshgrid(samples_range, features_range)
98
Z = np.asarray(timings).reshape(samples_range.shape[0],
0 commit comments