From edf2b9215e9da3a499a9ce060e67b2d82ffcf64e Mon Sep 17 00:00:00 2001 From: alibalapour <42287060+alibalapour@users.noreply.github.com> Date: Sun, 23 Aug 2020 15:26:50 +0430 Subject: [PATCH] fix typo! in r-objects.html "tails" -> "tail" --- docs/r-objects.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/r-objects.html b/docs/r-objects.html index d9c9a3c..ea348be 100644 --- a/docs/r-objects.html +++ b/docs/r-objects.html @@ -972,7 +972,7 @@
head
and tail
are two functions that provide an easy way to peek at large data sets. head
will return just the first six rows of the data set, and tail
will return just the last six rows. To see a different number of rows, give head
or tails
a second argument, the number of rows you would like to view, for example, head(deck, 10)
.
+head
and tail
are two functions that provide an easy way to peek at large data sets. head
will return just the first six rows of the data set, and tail
will return just the last six rows. To see a different number of rows, give head
or tail
a second argument, the number of rows you would like to view, for example, head(deck, 10)
.
R can open many types of files—not just CSVs. Visit Loading and Saving Data in R to learn how to open other common types of files in R.