1
Assuming I have the following data frame (just one example, as mine has almost 200,000 lines):
ae <- c(1,2,3,4,5,6,7,8,9,10)
be <- c(10,9,8,7,6,5,4,3,2,1)
pnadc1 <- data.frame(ae,be)
I need to replace all values of the rows in the column ae by number 200. Someone knows how to do it?