Trazado de gráficos en Python | conjunto 2
Trazado de gráficos en Python | Serie 1 subtramas Python # importing required modules import matplotlib.pyplot as plt import numpy as np # function to generate coordinates def create_plot(ptype): # setting the x-axis values x = np.arange(-10, 10, 0.01) # setting the y-axis values if ptype == ‘linear’: y = x elif ptype … Continue reading «Trazado de gráficos en Python | conjunto 2»