Computer Science, asked by supreetwarraich8138, 10 months ago

statement can be issued in ipython to generate a bar chart with vertical line hatching

Answers

Answered by nidaeamann
1

Answer:

bar(x, y, fill=False, hatch='|')

Explanation:

Hatching lines are several lines drawn close together to create areas of shadow in a drawing.They are most used when producing drawings to be etched on to metal printing plates.

This feature can also be translated into programming languages.

The following statement can be used to generate a bar chart with vertical line hatching in Python;

bar(x, y, fill=False, hatch='|')

Similar questions