I have following data set
I would like to convert float values to int, so i did data.convert_dtypes()
Pandas converted Nan to Na. How can i make it back or prevent pandas to do it? I use data imputation and some algorithmes doesn't support ( 'bool' object has no attribute 'transpose' )
I tried replace, fillna . Replace({pd.NA: np.nan}) convert int to float back again and this is not my solution since i would like to work with int

