In this tutorial, we will learn about is.element() function available in base R and use it to check if one or more elements is present in a vector. Let us create a sample vector in R Our simple vector hs 6 elements. If we want to check if a value us present in the vector,… Continue reading How To Check If One or More Elements is in a Vector
dplyr’s arrange(): Sort a Dataframe Columns
In this tutorial, we will learn how to sort a dataframe by a column in R. We will see three examples of using tidyverse’s arrange() function to sort a dataframe by one of its columns. First, we will sort a dataframe by numerical column in ascending order, next we will sort it in descending order… Continue reading dplyr’s arrange(): Sort a Dataframe Columns
How to Create a dataframe from vectors in R
In this tutorial, we will learn how to create a dataframe from scratch in R. We will learn to create a dataframe from two vectors of same length. Let us get started creating two vectors in R. We use results from OReilly’s 2021 Data/AI Salary Survey giving average salary associated with some top programming languages.… Continue reading How to Create a dataframe from vectors in R
Remove rows with missing values using drop_na() in R
In this tutorial we will learn how to remove rows containing missing values using drop_na() function available in tidyr package in R. drop_na() available in tidyverse is a versatile function. First we will see an example of removing all rows with at least one missing values using drop_na() and then we can selectively inspect a… Continue reading Remove rows with missing values using drop_na() in R
How to Convert a List to a dataframe in R
List data structure in R is a useful structure store different data types. In this tutorial, we will learn how to convert a list into a dataframe. Here we will assume that the list has multiple vectors of same size. Creating a list with vectors of equal sizes Let us get started by create an… Continue reading How to Convert a List to a dataframe in R