I have the following series data. It has 600 data points shown below and i want to generate an array of 100000 elements following the same pattern of the data using Python and i don't know how to do it. Could someone help me to do that?
I tried to plot the histogram and fit the data with some distribution but didn't work so well, because i think my data don't follow any distribution
tup = levy.fit_levy(data)
array = tup[0].get('0')
random = levy_stable.rvs(array[0], array[1],array[2],array[3],size=100000)
Here is the the plot and the histogram of the data i'm trying to fit