Skip to content

Commit d2cd6b8

Browse files
committed
Pushing the docs for revision for branch: master, commit 80c770ffa03fe1a6980b02608bfad0aa0377a12a
1 parent b534b11 commit d2cd6b8

File tree

824 files changed

+2784
-2788
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

824 files changed

+2784
-2788
lines changed

dev/_downloads/plot_out_of_core_classification.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def plot_accuracy(x, y, x_legend):
362362

363363
cls_runtime.append(total_vect_time)
364364
cls_names.append('Vectorization')
365-
bar_colors = rcParams['axes.color_cycle'][:len(cls_names)]
365+
bar_colors = ['b', 'g', 'r', 'c', 'm', 'y']
366366

367367
ax = plt.subplot(111)
368368
rectangles = plt.bar(range(len(cls_names)), cls_runtime, width=0.5,
@@ -389,7 +389,6 @@ def autolabel(rectangles):
389389

390390
# Plot prediction times
391391
plt.figure()
392-
#fig = plt.gcf()
393392
cls_runtime = []
394393
cls_names = list(sorted(cls_stats.keys()))
395394
for cls_name, stats in sorted(cls_stats.items()):
@@ -398,7 +397,6 @@ def autolabel(rectangles):
398397
cls_names.append('Read/Parse\n+Feat.Extr.')
399398
cls_runtime.append(vectorizing_time)
400399
cls_names.append('Hashing\n+Vect.')
401-
bar_colors = rcParams['axes.color_cycle'][:len(cls_names)]
402400

403401
ax = plt.subplot(111)
404402
rectangles = plt.bar(range(len(cls_names)), cls_runtime, width=0.5,
-107 Bytes
-107 Bytes
-149 Bytes
-149 Bytes
385 Bytes
385 Bytes
201 Bytes
201 Bytes
95 Bytes

0 commit comments

Comments
 (0)