Ekta AggarwalMar 25, 2021dplyr elaborated!dplyr is one of the most popular libraries in R which is widely used for data manipulation and data wrangling.
Ekta AggarwalJan 14, 2021Transposing / Reshaping data in R (wide and long formats)We shall try to understand what are long and wide formats, how to convert them from wide to long & long to wide in R (tidyr and data.table)
Ekta AggarwalJan 13, 2021Exporting data / writing files from RIn this tutorial we shall be learning how to export following files from SAS: csv files, txt files, excel files and SAS files.
Ekta AggarwalJan 13, 2021Reading files / importing data in RIn this tutorial we will mainly deal with how to read / import datasets of various formats: csv, txt, xlsx, SAS, SPSS, Stata etc.
Ekta AggarwalJan 13, 2021User Defined functions in RIn this tutorial, we shall be covering all the aspects of creating a user defined function (UDF) in R.
Ekta AggarwalJan 12, 2021Loops in RThere are two types of loops in R: for loop while loop In this tutorial we shall be covering both of them in detail.
Ekta AggarwalJan 12, 2021Apply family of functionsApply family of functions majorly consists of- 1. apply 2. lapply 3. sapply 4. tapply In this tutorial, we'll learn their implementation.
Ekta AggarwalJan 12, 2021Removing different objects form R environmentIn your R studio, while you are working, in your top right side- you can see the global environment where information about multiple...
Ekta AggarwalJan 12, 2021IF ELSE in RDetailed tutorial on If-ELSE function, IF-ELSE chunk, nested if-else and creating new datasets using if else along with for loop.
Ekta AggarwalJan 11, 2021Filtering different objects in RIn this tutorial we shall explore different ways to subset a vector, matrix, dataframes and list
Ekta AggarwalJan 10, 2021Types of Objects in RA detailed tutorial about variables, vectors, matrices, data frames and lists in R