0
Completed
FITS table data to pandas dataframe
Something like astropy.io.table.to_pandas(), but for fits data objects
Customer support service by UserEcho
Could you please extend this a bit? It seems to require just one extra step of reading in the fits table as a Table.
from astropy.table import Table
table = Table.read('your_table.fits')
pandas_df = table.to_pandas()
Indeed, any Astropy Table can be easily converted to/from a Pandas DataFrame - see this documentation page for more details!