1

When plotting, Jupiter outputs weird stuff that looks like pointers or something, see the image: Jupiter output

I have no idea how to change it, I didn't find any answers on google.

Liron Navon
  • 1,068
  • 1
  • 11
  • 22

1 Answers1

2

Assign a variable to the plot object to capture the output:

_ = iris.boxplot(by = 'species', figsize = (12, 8))

solution

The underscore is used in Python when you need to assign to a variable that isn't actually used.

willk
  • 3,727
  • 2
  • 27
  • 44