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
vsini | cluster | |
---|---|---|
57.9878 | Trumpler 14 | |
65.384 | Trumpler 14 | |
171.073 | Trumpler 14 | |
38.8181 | Trumpler 14 | |
35.236 | Trumpler 14 | |
43.879 | Trumpler 14 | |
382.417 | Trumpler 14 | |
139.456 | Trumpler 14 | |
35.8049 | Trumpler 14 |
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
vsini | cluster | |
---|---|---|
57.9878 | Trumpler 14 | |
65.384 | Trumpler 14 | |
171.073 | Trumpler 14 | |
38.8181 | Trumpler 14 | |
35.236 | Trumpler 14 | |
43.879 | Trumpler 14 | |
382.417 | Trumpler 14 | |
139.456 | Trumpler 14 | |
35.8049 | Trumpler 14 |
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
#!/usr/bin/env python | |
""" | |
Script to make a scatter plot of two variables and color code the dots | |
according to a thrid variable | |
author: Gustavo Bragança | |
e-mail: ga.braganca at gmail dot com | |
""" | |
# import needed libraries |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
""" | |
Usage: python remove_output.py notebook.ipynb [ > without_output.ipynb ] | |
Modified from remove_output by Minrk | |
""" | |
import sys | |
import io | |
import os | |
import argparse | |
from IPython.nbformat.current import read, write |
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
import os | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import s4 | |
#Synplot path | |
SPATH = os.getenv('HOME') + '/synplot/synplot/' |
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
/**write your css in here**/ | |
/* like */ | |
<style> | |
.CodeMirror{ | |
font-family: "Consolas", sans-serif; | |
} | |
pre, code, kbd, samp { | |
font-family: Consolas, monospace; |