How to Revert in-built Dataset in R? -
how revert in-built dataset in r? happened transform it, want use original datset now.
if mtcars
dataset got transformed, calling data(mtcars)
again original dataset. ie.
mtcars <- mtcars[,2:3] ncol(mtcars) #[1] 2 data(mtcars) ncol(mtcars) #[1] 11
Comments
Post a Comment