9 Ways To Create New Variables with tidyverse

When one wants to create a new variable in R using tidyverse, dplyr’s mutate verb is probably the easiest one that comes to mind that lets you create a new column or new variable easily on the fly. It is probably the go to command for every time one needed to make new variable for… Continue reading 9 Ways To Create New Variables with tidyverse

6 Most Useful dplyr Commands to Manipulate a Data Frame in R

dplyr is one of the R packages developed by Hadley Wickham to manipulate data stored in data frames. Data frame is a two-dimensional data structure, where each column can contain a different type of data, like numerical, character and factors. In case you wondered the meaning of the word “dplyr”, it is like “pliers” for… Continue reading 6 Most Useful dplyr Commands to Manipulate a Data Frame in R