hELLO aLL,
I AM TRYING TO MIMIC AN EXCEL SHEET FOR INVENTORY MODELLING WHERE VALUES OF CELLS CHANGES DYNAMICALLY BASED ON THE VALUES OF OTHER CELLS.
However this is not happening in R .
for example if I have a data Frame and I say x<- data.frame(a=5,b=6)
and then x$c <- a+b so c should be 11.
however when I change a to say 1 instead of 5, c is not changed to 7. the problem is I have many column that needs to by dynamic to each other , is there a package that mimics this like excel. Thanks in advance .
Haytham