I tried to plot a boxplot with confidence intervals but I got an exception.
from sklearn import datasets
iris = datasets.load_iris()
iris = iris.data
iris = pd.DataFrame(iris)
iris.columns = ['a', 'b', 'c', 'd']
iris.boxplot(column='a', figsize=(15,20), showmeans = True, patch_artist = True, conf_intervals = True, bootstrap = 100)
plt.show()
IndexError: tuple index out of range
How can I resolve this error?