Google News
logo
Matplotlib - Quiz(MCQ)
To display histogram with well-defined edge we can write
A)
df.plot( type = ‘hist’, edge = ‘red’)
B)
df.plot( type = ‘hist’, line = ‘red’)
C)
df.plot( type = ‘hist’, edgecolor = ‘red’)
D)
df.plot(type = ‘hist’, linecolor = ‘red’)

Correct Answer : Option (C) :   df.plot( type = ‘hist’, edgecolor = ‘red’)

Advertisement