From c712ee92c34149f58f1875e450f19d4d5ae57743 Mon Sep 17 00:00:00 2001 From: nickelas Date: Tue, 26 Jul 2016 14:42:19 +0200 Subject: [PATCH] Update tibble.Rmd (#193) Inserted to in "you might need to coerce a regular data frame a tibble" --- tibble.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tibble.Rmd b/tibble.Rmd index 3da104e..d16cc4b 100644 --- a/tibble.Rmd +++ b/tibble.Rmd @@ -16,7 +16,7 @@ library(tibble) ## Creating tibbles {#tibbles} -The majority of the functions that you'll use in this book already produce tibbles. If you're working with functions from other packages, you might need to coerce a regular data frame a tibble. You can do that with `as_tibble()`: +The majority of the functions that you'll use in this book already produce tibbles. If you're working with functions from other packages, you might need to coerce a regular data frame to a tibble. You can do that with `as_tibble()`: ```{r} as_tibble(iris)