| LIST I | LIST II |
|---|---|
| A. DataFrame.std() | IV. Standard Deviation |
| B. DataFrame.describe() | III. Descriptive statistical values |
| C. DataFrame.var() | I. Variance |
| D. DataFrame.mode() | II. Value that appears most |
Given the following code for histogram:
df.plot(kind='hist', edgecolor="Green", linewidth=2, linestyle='-', fill=False, hatch='o')
What is the role of fill=False?