I have the following code for a table:
n_area = pd.crosstab(index=airbnb["neighbourhood"], columns=airbnb["neighbourhood_group"])
and I would like to add a row of totals (count) in the end of each column with a single function, completing what I have already written
this all comes from the dataset here https://www.kaggle.com/code/dgomonov/data-exploration-on-nyc-airbnb/data
A screenshot of the data is as follows