Making some plots:
But first, import some modules...
In [7]:
import numpy as np
from matplotlib import pyplot as plt
%matplotlib inline
import warnings
warnings.filterwarnings('ignore')
In [13]:
%run ~/github/LCS/python/Python3/LCS_MS_rf_plots.py
In [14]:
g.plotNUV24_vs_sizeratio()
Why is this important?
I think I wanted to confirm that galaxies with smaller R24/Rd were more obscured. This plot confirms that statement.
We are plotting all galaxies in the galfit sample.
are NUV and M24 correlated?
In [38]:
%run ~/github/LCS/python/Python3/LCS_MS_rf_plots.py
In [39]:
g.plotn24_vs_R24()
Summary
Objects with smaller R24 (less than 0.5 pixel) have higher sersic indices (>2). These objects are unresolved.
The other sources have sersic indices consistent with disk (ignoring the collection at n=5, which indicates there was some problem fitting, perhaps contamination by a neighbor).
In [ ]: