I have a data frame where there's one missing value, i need to ignore the missing value and perform the further calculation
df1:
x1 x2 x3 x4 x5
8 6 3 5
expected output:
x2 x3 x4 x5
8 6 3 5
i need to ignore the missing value. please help, thanks