From fd4ad2ad5cd776a4fb9bbd1f4cfbb70943de3ca1 Mon Sep 17 00:00:00 2001 From: Geetika Paul <32318177+geetikaPaul@users.noreply.github.com> Date: Fri, 5 Nov 2021 16:41:48 +0530 Subject: [PATCH] Correcting typo --- 02-intro2R.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-intro2R.Rmd b/02-intro2R.Rmd index 24a015d..975fc9c 100644 --- a/02-intro2R.Rmd +++ b/02-intro2R.Rmd @@ -345,7 +345,7 @@ You can save your R objects directly into a file using `save()` and `saveRDS()` ```{r writeData2,eval= FALSE} save(cpgi.df,enh.df,file="mydata.RData") load("mydata.RData") -# saveRDS() can save one object at a type +# saveRDS() can save one object at a time saveRDS(cpgi.df,file="cpgi.rds") x=readRDS("cpgi.rds") head(x)