79566692

Date: 2025-04-10 12:51:51
Score: 1
Natty:
Report link
ggplot(df, aes(x, y, color = grp)) +
  geom_point() +
  labs(color = expression(italic(x[0])))

enter image description here

legend_label <- "𝒙₀"

ggplot(df, aes(x, y, color = grp)) +
  geom_point() +
  scale_color_discrete(name = legend_label)

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: KacZdr