You need to change the color and thickness of all lines of your box plot, including the box, whiskers, median, and caps.
How would you finish the 13th line of code below to get the pictured result?
import matplotlib.pyplot as plt
import numpy as np
np.random.seed(1)
data = np.random.normal(2, 3, 500)
plot = plt.boxplot(data, patch_artist=True)
color = 'green'
fill_color='lightblue'
width = 1.7
for prop in ['boxes', 'whiskers', 'means', 'medians', 'caps']:
plt.setp(# your code here)
for prop in ['boxes']:
plt.setp(plot[prop], facecolor=fill_color)
plt.show()
The answer should be in the following format:
plt.setp(...)