I hereby claim:
- I am benjaminrose on github.
- I am brose (https://keybase.io/brose) on keybase.
- I have a public key whose fingerprint is 09FC E7D0 0CA1 377C A875 A53C 7D10 0876 030D 5508
To claim this, I am signing this object:
| import numpy as np | |
| import pandas as pd | |
| select = { | |
| "SN_Ia": 300, | |
| "CCSN": 160, | |
| "SN_Iax": 10, | |
| # "SLSN-I": 5, | |
| # "TDE": 5, | |
| # "ILOT": 5, |
I hereby claim:
To claim this, I am signing this object:
| import numpy as np | |
| #create random data | |
| data1 = np.random.rand(10) | |
| data2 = np.random.rand(10) | |
| data3 = np.random.rand(10) | |
| #stack data into one ojbect | |
| data_list = np.dstack((data1, data2, data3)) |
| % \documentclass[apj, iop]{emulateapj} | |
| % use for a preview of the final version | |
| \documentclass[manuscript]{aastex} | |
| %[manuscript] = defualt, and how you submit | |
| %[preprint] = one-column, single-spaced document | |
| %[preprint2] = double-column, single-spaced document | |
| \usepackage{graphicx}% Include figure files | |
| \usepackage{color}%for preprints | |
| \usepackage{hyperref} |
| import matplotlib.pyplot as plt | |
| import numpy as np #casue it rocks | |
| # get random values to plot | |
| #needs to be in radians from (-pi,pi) & (-pi/2, pi/2) | |
| a = np.random.rand(100)*2*np.pi - np.pi | |
| d = np.random.rand(100)*np.pi - np.pi/2 | |
| #todo(make values astropy.cooridnates and use wrap_at(180*u.degree). Allows for more varriable data. | |
| #make figure |