make_lss_SHASHo2#
- sknormod.datasets.make_lss_SHASHo2(n, interpolate_mu, interpolate_sigma=[1, 1], interpolate_nu=[0, 0], interpolate_tau=[1, 1])#
Simulate LSS data with specified interpolations for mu, sigma, nu, and tau.
Example usage: import numpy as np import matplotlib.pyplot as plt
interpolate_mu = [50, 52, 35] interpolate_sigma = [2, 0.5, 2] interpolate_nu = [-1.5, -1.5] interpolate_tau = [1, 1]
x, y = make_lss_SHASHo2(1000, interpolate_mu, interpolate_sigma, interpolate_nu, interpolate_tau)
plt.scatter(x, y) plt.show()