fillmissing function with makima method

5 visualizaciones (últimos 30 días)
katie_km
katie_km el 23 de Mayo de 2023
Comentada: Steven Lord el 30 de Mayo de 2023
Hi!
I'm trying to fill the missing data with fillmissing function and makima method for gaps that are less than 12000 samples. This is the code I used:
trial8 = fillmissing(trial8,'makima','MaxGap',12000);
It removes NaNs, but for some reason gives weird and wrong negative values. I'm attaching the screens, first is my data before filling and the second after filling. Could somebody tell me what do I do wrong?
  4 comentarios
katie_km
katie_km el 23 de Mayo de 2023
@Matt J The point of using the function was getting rid of the drop, not extending it.
Steven Lord
Steven Lord el 30 de Mayo de 2023
Is that drop in some sense "real" or is it an artifact of some issue with the data gathering process? Do you really want to use fillmissing here or would either rmmissing or rmoutliers be a better match for what you're hoping to do with this data?
If I was collecting data from a thermometer and it accidentally kept recording once I took it from under my tongue and put it back in its case, that data shouldn't be filled it should be removed entirely.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 23 de Mayo de 2023
Thje 'makima' method is likely best for filling NaN gaps in varying data. Yours appear to be relatively constant, other than for that one instance.
See if using 'nearest' instead will improve the result. .
  4 comentarios
katie_km
katie_km el 30 de Mayo de 2023
Editada: katie_km el 30 de Mayo de 2023
@Star Strider, thank you, it worked! :D
Star Strider
Star Strider el 30 de Mayo de 2023
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by