Python Basics Matplotlib Pyplot Markers and Line Style

preview_player
Показать описание
Learn how to change the markers and line style arguments for plot method with pyplot in Matplotlib for python programming

twitter: @python_basics
Рекомендации по теме
Комментарии
Автор

from matplotlib import pyplot as pp

pp.figure(1, figsize= (8, 6))
x = list(range(1, 6))
y = [0, 3, 5, 7, 11]
pp.axis([0, 6, 0, 12])
pp.plot(x, y, 'r-.') ## thought this looked good
pp.plot(x, y, 'go') ## I did a lil experimenting
pp.show()

blueicewolfgmail
Автор

sir how to make circle with radius 10m with markers
thank you

sheetanshudeepak