Skip to content

Instantly share code, notes, and snippets.

@groverpr
Created December 8, 2017 03:09
Show Gist options
  • Select an option

  • Save groverpr/554d2fbc3b125bf3e7d0d1999ebc7665 to your computer and use it in GitHub Desktop.

Select an option

Save groverpr/554d2fbc3b125bf3e7d0d1999ebc7665 to your computer and use it in GitHub Desktop.
simulated data
x = np.arange(0,50)
x = pd.DataFrame({'x':x})
# just random uniform distributions in differnt range
y1 = np.random.uniform(10,15,10)
y2 = np.random.uniform(20,25,10)
y3 = np.random.uniform(0,5,10)
y4 = np.random.uniform(30,32,10)
y5 = np.random.uniform(13,17,10)
y = np.concatenate((y1,y2,y3,y4,y5))
y = y[:,None]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment