Hits: 34
Summarise Data in R – How to display head and tail of a dataset in R
In R, it is often useful to take a quick look at the first and last few rows of a dataset to get an idea of its contents and structure. This can be done by using the head() and tail() functions, which allow you to display the first or last n rows of a dataset, respectively.
The head() function is used to display the first n rows of a dataset. By default, it shows the first 6 rows of a dataset, but you can specify a different number of rows by passing an argument to the function. For example, head(dataset, 10) will display the first 10 rows of the dataset.
The tail() function is used to display the last n rows of a dataset. Like head() function, by default, it shows the last 6 rows of a dataset, but you can specify a different number of rows by passing an argument to the function. For example, tail(dataset, 15) will display the last 15 rows of the dataset.
In summary, In R, it is often useful to take a quick look at the first and last few rows of a dataset to get an idea of its contents and structure. This can be done by using the head() and tail() functions, which allow you to display the first or last n rows of a dataset, respectively. The head() function is used to display the first n rows of a dataset, by default it shows the first 6 rows of a dataset but you can specify a different number of rows by passing an argument to the function. The tail() function is used to display the last n rows of a dataset, like the head() function, by default it shows the last 6 rows of a dataset but you can specify a different number of rows by passing an argument to the function.
In this Applied Machine Learning & Data Science Recipe (Jupyter Notebook), the reader will find the practical use of applied machine learning and data science in R programming: How to display head and tail of a dataset in R.
Summarise Data in R – How to display head and tail of a dataset in R
Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.
Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners
Latest end-to-end Learn by Coding Projects (Jupyter Notebooks) in Python and R:
Applied Statistics with R for Beginners and Business Professionals
Data Science and Machine Learning Projects in Python: Tabular Data Analytics
Data Science and Machine Learning Projects in R: Tabular Data Analytics
Python Machine Learning & Data Science Recipes: Learn by Coding