Counting all NaN for each variable in the table

2 visualizaciones (últimos 30 días)
Mouhammad Jomaa Alkaseam
Mouhammad Jomaa Alkaseam el 6 de Feb. de 2022
Respondida: Rahul el 19 de Sept. de 2024
I have wind and wave data, (9 columns), I would like to have the NaN for each column and then plot the clean data with all the indicated missing values for each column

Respuestas (1)

Rahul
Rahul el 19 de Sept. de 2024
In order to clean your data that contains NaN values, you can consider the following method:
  • You can first identify where the NaN values exist in your data using the 'isnan' function on your data.
  • Further to clean the data, you can use 'rmmissing' function which would remove the rows with NaN values from the data.
  • If the above step is not desired for your use-case, you can consider interpolating the data to fill in the missing values by using the 'fillmissing' function.
  • In the first step, 'isnan' function would give you indices where NaN values exist. You can use the 'find' function on these indices and obtain indicate the missing values and plot them using ‘plot’ function.
You can refer to the following MathWorks documentations to know more about these functions:
Hope this resolves your query. Thanks.

Categorías

Más información sobre Data Preprocessing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by