First time posting a Python related question here, please bear with me.
I have a panda dataframe with a lot of rows and columns and I would like to create a new Excel spreadsheet (using xlsxwriter) with the Nan values.
E.g. in the rows I have Name, Age, Job, Address, Country. I would like to create a new excel document only with the rows and columns where Job == Nan/blank.
I don't want to fill the nan using .fillna, just want to see every person in the dataset where Job is not listed.
I hope you can help me, and I'm sorry if my question is confusing, english is not my first language, and I'm really new at Python and Pandas.