Replace NaN's in a table - I need some help

19 Ansichten (letzte 30 Tage)
BN
BN am 19 Dez. 2019
Beantwortet: BN am 20 Dez. 2019
Hello all, I have a table namely T2,
it has 12 columns. in all of these columns I have some NaN values. I would like to replace NaNs in the 1 to 7 column. the problem is I want to replace these NaNs by non-NaN values in each column (the value in each row is stable).
for example ( for two columns):
NaN NaN NaN
NaN RAD NaN
Behezad RAD MORD
NaN NaN MORD
I want:
Behezad RAD MORD
Behezad RAD MORD
Behezad RAD MORD
Behezad RAD MORD
for each column. it is important that every column has it's own value. I don't want to have any change in column 8 to 12 NaNs
thank you, I wait for your kindly answers.
best regards
  7 Kommentare
BN
BN am 20 Dez. 2019
Thank you again. All values in each column are stable. I mean all up and down nan values are similar. These columns represent some features of one climate station for a time period (like the name of region and latitude and longitude of the station so all cells in 1 to 7 is similar. I want to replace nan with nearest none nan of each column in column 1 to 7. Thanks again ???
BN
BN am 20 Dez. 2019
I have 540 excel file like this for other weather stations. That's the reason I want to use the Matlab code.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Ridwan Alam
Ridwan Alam am 19 Dez. 2019
Bearbeitet: Ridwan Alam am 19 Dez. 2019
T2.col1(ismissing(T2.col1)) = "Behezad";
T2.col2(ismissing(T2.col2)) = "RAD";
T2.col3(ismissing(T2.col3)) = "MORD";
  2 Kommentare
BN
BN am 19 Dez. 2019
Bearbeitet: BN am 19 Dez. 2019
Dear Ridwan, thank you but, it's just a little example. my real data set is very larg and have very differents values (city names and latitude, longitude), I can't using this. I want to fill automaticly by non-nan values in each column. thank you
Capture.JPG
Ridwan Alam
Ridwan Alam am 19 Dez. 2019
Sure, Behzad. Please share what you've tried to automate this. And if there is any specific error or question, I would be glad to help. But, I am not willing to write your whole code for you.

Melden Sie sich an, um zu kommentieren.


BN
BN am 20 Dez. 2019

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by