Created
December 8, 2017 03:09
-
-
Save groverpr/554d2fbc3b125bf3e7d0d1999ebc7665 to your computer and use it in GitHub Desktop.
simulated data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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