Not usually a good idea to do this, especially if depth is intended to (eventually?) hold numeric values, because filling the column with strings will make the column type chr. Also, don't use Null, which could be confusing because it's not the same as NULL. But here's how you'd replace a column Depth in a data frame dta
dta["Depth"] <- "empty"