Gallery of the kind of peaks and noise the sequgen package can generate.
# Utilities to plot
import numpy as np
import matplotlib.pyplot as plt
# Time series has 100 points
t_predict = np.arange(100)
def plot(title, y_predict):
plt.figure()
plt.plot(t_predict, y_predict, ".b-")
plt.title(title)
plt.grid(True)
plt.show()
Generate a time series with a constant value of 5.
from sequgen.deterministic.constant import constant
plot('Constant signal = 5',
constant(t_predict, value=5)
)
Generate a time series with located in middle of serie and using height of positive height of 5 with a standard deviation of 10
from sequgen.deterministic.normal_peak import normal_peak
plot('Normal peak location=50, stddev=10, height=5, sign=1',
normal_peak(t_predict, location=50, stddev=10, height=5, sign=1))
Generate a single sine signal which starts from origin and has an amplitude of 5
from sequgen.deterministic.sine import sine
plot('Single sine signal',
sine(t_predict, wavelength=100, amplitude=5))
Generate a sine which starts at peak and repeats 4 times
plot('4 sines',
sine(t_predict, wavelength=25, phase_shift=18.75))
Generate a triangular peak centered at 60 and with height of 5 and base width of 40
from sequgen.deterministic.triangular_peak import triangular_peak
plot('isosceles triangle',
triangular_peak(t_predict, placement=40, width_base_left=20, width_base_right=20, height=5))
To generate a random noise which has gaussian distribution centered at 0 and a standard deviation of 5
from sequgen.stochastic.gaussian import gaussian
plot('Gaussian noise',
gaussian(t_predict, average=0, stddev=5))