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

Publicado el: 23 agosto 2021
en el 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  


En esta página del sitio puede ver el video en línea Matplotlib Graphic Plotting Tutorial with Python - [ Pyplot Plotting ] - 5/13 de Duración hora minuto segunda en buena calidad , que subió el usuario Songur Technology 23 agosto 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 71 veces y le gustó 2 a los espectadores. Disfruta viendo!