Matplotlib Graphic Plotting Tutorial with Python - [ Pyplot Plotting ] - 5/13

Publicado em: 23 Agosto 2021
no canal de: Songur Technology
71
2

In this lesson you will learn about Markers! Now you can punctuate or mark in different formats instead of drawing. For instance

import matplotlib.pyplot as plt
import numpy as np

x = np.array([0, 1, 2, 3])
y = np.array([3 ,1 , 2, 7])


plt.plot(x, y, marker="o")

Here we put a third parameter, the marker.
By the way, x and y are permanent parameters, they have to be there all the time, sometimes you can just use x and sometimes just y. Because if x is not present, the system automatically defaults to it, for example, when y = [ 3, 1, 4, 7], x automatically defaults to x = [0, 1, 2, 3]

As we said, if you do marker="o", the line will disappear! and only two o-points will remain.

The default line pattern is marker=''--" so you can change these drawings.


Pycharm Download Link: https://www.jetbrains.com/pycharm/dow...
Python Download Link: https://www.python.org/downloads/rele...


GitHub: https://github.com/Songurdevoloper
Instagram:   / songur_technology  
Linkedin:   / songur-technology-8610a621a  


Nesta página do site você pode assistir ao vídeo on-line Matplotlib Graphic Plotting Tutorial with Python - [ Pyplot Plotting ] - 5/13 duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Songur Technology 23 Agosto 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 71 vezes e gostou 2 espectadores. Boa visualização!