With a background in science (B.S. Biology), extensive customer relations experience, strong artistic inclination and undying curiosity, web development and software programming proves to be the perfect platform for merging my passions for the creative and analytical.
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
from mpl_toolkits.mplot3d import Axes3D
fig, ax = plt.subplots()
xdata = []
ydata = []
xu = np.linspace(-10*np.pi,10*np.pi,2000)
for numb in xu:
xdata.append(numb)
for x in xdata:
g = x*3
y = np.sin(g)
ydata.append(y)
print(xdata,ydata)
# xdata, ydata = [], []
ln, = plt.plot(xdata, ydata, 'ro', markersize=1,animated=True)