Skip to content

Commit

Permalink
use marker_size
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Feb 6, 2024
1 parent c370ec1 commit f4faefe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/python/plots/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def log_classification() -> None:
color = [0, 255, 0]
else:
color = [255, 255, 255]
# radius = abs(g_of_t - f_of_t)
rr.log("classification/samples", rr.Scalar(g_of_t), rr.SeriesPoint(color=color)) # , radius=radius)) # TODO:
marker_size = abs(g_of_t - f_of_t)
rr.log("classification/samples", rr.Scalar(g_of_t), rr.SeriesPoint(color=color, marker_size=marker_size))


def main() -> None:
Expand Down

0 comments on commit f4faefe

Please sign in to comment.