Skip to content

Commit

Permalink
Fix KMeans column names for scoring history.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnocandel committed Sep 29, 2016
1 parent 13b69be commit 0814da1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ext/components/model-output.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ H2O.ModelOutput = (_, _go, _model, refresh) ->
renderPlot 'Scoring History', no, _.plot (g) ->
g(
g.path(
g.position 'number_of_iterations', 'average_within_cluster_sum_of_squares'
g.position 'iteration', 'within_cluster_sum_of_squares'
g.strokeColor g.value '#1f77b4'
)
g.point(
g.position 'number_of_iterations', 'average_within_cluster_sum_of_squares'
g.position 'iteration', 'within_cluster_sum_of_squares'
g.strokeColor g.value '#1f77b4'
)
g.from table
Expand Down

0 comments on commit 0814da1

Please sign in to comment.