├── .gitignore ├── HTML ├── PythonBootcamp.html └── Visualization.html ├── LICENSE ├── PythonBootcamp.ipynb ├── README.md ├── Skyfit.ipynb ├── Visualization.ipynb ├── Visualizing Graphs with NetworkX.pdf ├── data ├── SN2011iv_B_SWO_DC_2011_12_11SN.fits ├── SN2011iv_B_template.fits ├── SNIa_DM.dat ├── galsample1.dat ├── galsample2.dat └── im3433.fits ├── scripts ├── plot_Hubble.py └── plot_diff.py └── skyfit_spyder.py /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /HTML/PythonBootcamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/HTML/PythonBootcamp.html -------------------------------------------------------------------------------- /HTML/Visualization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/HTML/Visualization.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /PythonBootcamp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/PythonBootcamp.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /Skyfit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/Skyfit.ipynb -------------------------------------------------------------------------------- /Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/Visualization.ipynb -------------------------------------------------------------------------------- /Visualizing Graphs with NetworkX.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/Visualizing Graphs with NetworkX.pdf -------------------------------------------------------------------------------- /data/SN2011iv_B_SWO_DC_2011_12_11SN.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/SN2011iv_B_SWO_DC_2011_12_11SN.fits -------------------------------------------------------------------------------- /data/SN2011iv_B_template.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/SN2011iv_B_template.fits -------------------------------------------------------------------------------- /data/SNIa_DM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/SNIa_DM.dat -------------------------------------------------------------------------------- /data/galsample1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/galsample1.dat -------------------------------------------------------------------------------- /data/galsample2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/galsample2.dat -------------------------------------------------------------------------------- /data/im3433.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/data/im3433.fits -------------------------------------------------------------------------------- /scripts/plot_Hubble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/scripts/plot_Hubble.py -------------------------------------------------------------------------------- /scripts/plot_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/scripts/plot_diff.py -------------------------------------------------------------------------------- /skyfit_spyder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstronomerAmber/Python-Tutorials/HEAD/skyfit_spyder.py --------------------------------------------------------------------------------