Skip to content

Commit

Permalink
Update eGTC_classifier.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
hagax8 committed Feb 1, 2019
1 parent e2d9afb commit 810b770
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/eGTC_classifier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ which are colored by predicted label. To each node is associated class probabili
y='x2',
color='predicted_node_label:N',
size=alt.value(50),
opacity='probability_of_predominant class',
tooltip=['x1','x2', 'predicted_node_label:N', 'probability_of_predominant_class']
opacity='probability_of_predominant class:Q',
tooltip=['x1','x2', 'predicted_node_label:N', 'probability_of_predominant_class:Q']
).properties(title = "Class map", width = 200, height = 200)


Expand Down Expand Up @@ -134,7 +134,7 @@ Visualize predicted vs real labels using the iris dataset and `altair <https://a
legend=alt.Legend(title="label")),
opacity="probability_of_predominant_class:Q",
tooltip=["x1", "x2", "predicted_label:N",
"true_label:N", "probability_of_predominant_class"]
"true_label:N", "probability_of_predominant_class:Q"]
).properties(title="Pedicted labels", width=200, height=200).interactive()

# Projection of X_test colored by true_label
Expand All @@ -144,7 +144,7 @@ Visualize predicted vs real labels using the iris dataset and `altair <https://a
legend=alt.Legend(title="label")),
size=alt.value(100),
tooltip=["x1", "x2", "predicted_label:N",
"true_label:N", "probability_of_predominant_class"]
"true_label:N", "probability_of_predominant_class:Q"]
).properties(title="True_labels", width=200, height=200).interactive()


Expand Down

0 comments on commit 810b770

Please sign in to comment.