From 509f70902de86a356a1026b0282f42cf9ec65a82 Mon Sep 17 00:00:00 2001 From: S'busiso Mkhondwane Date: Fri, 12 Aug 2016 21:28:53 +0200 Subject: [PATCH] Update tibble.Rmd (#248) Typo --- tibble.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tibble.Rmd b/tibble.Rmd index fc5fce1..4d942ad 100644 --- a/tibble.Rmd +++ b/tibble.Rmd @@ -16,7 +16,7 @@ library(tibble) ## Creating tibbles {#tibbles} -The almost all of the functions that you'll use in this book produce tibbles as using tibbles is one of the common features of packages in the tidyverse. Most other R packages use regular data frames, so you might want to coerce a data frame to a tibble. You can do that with `as_tibble()`: +Almost all of the functions that you'll use in this book produce tibbles as using tibbles is one of the common features of packages in the tidyverse. Most other R packages use regular data frames, so you might want to coerce a data frame to a tibble. You can do that with `as_tibble()`: ```{r} as_tibble(iris)