Remove NaN values from a table

조회 수: 30 (최근 30일)
Ines Shekhovtsov
Ines Shekhovtsov 2023년 4월 3일
댓글: Peter Perkins 2023년 4월 5일
Hi,
I have an 84 column table that has EMG, gyroscope, goniometer and analog signal data. It was all collected at different frequencies and there are NaN values for rows that were sampled at lowest rate so that they match the column with largest amount of actual data. I just want to remove these NaN values so that i have a new table with columns of varying length that have actual data, and thus no NaN values. So to just further clarify, lets assume column 1 is emg and has 1000 data points and 200 NaN values, column 2 is gyroscope data so that has 300 data points and 900 NaN values, column 3 is goniometer data that has 400 data points and 800 NaN values and finally column 4 has analog data that contains no NaN values and has 1200 actual data points.
I would like to just remove the NaN values from the table so that column 1 now has 1000 data points, column 2: 300 data points, column 3: 400 data points and column 4 still the original 1200 data points.
can someone please help me out with this?
Thank you in advance!

답변 (2개)

Image Analyst
Image Analyst 2023년 4월 3일
All columns in a table must be the same number of rows. To have what you want, you'd have to break apart your table into 4 (or 84) separate tables (or double vectors).
  댓글 수: 2
Ines Shekhovtsov
Ines Shekhovtsov 2023년 4월 3일
I've been trying to code by minimizing creating variables in the workspace and storing them in structs instead. HOwever i'm just familiarizing myself with structs. Could someone show me how to do a simple struct based on the example information i have given?
Thank you
Image Analyst
Image Analyst 2023년 4월 3일
Maybe, but yoiu keep forgetting to attach your data. I'll check back later for it.

댓글을 달려면 로그인하십시오.


Star Strider
Star Strider 2023년 4월 3일
I would not remove the NaN values.
The fillmissing function using the 'previous' method might be the best option.
  댓글 수: 1
Peter Perkins
Peter Perkins 2023년 4월 5일
Right, as SS says, you should thiknk about why you want to do this. Your life might be easier if you did not. Hard to tell though, you would need to say what happens to these data down the road.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by