Dplyr() is the data manipulation package in R and is described in detail here. Problem: Use of Dplyr mutate() function […]
Category: R-Programming
tidyr in R
tidyr package is used in R to “tidy” the data. Tidy data is the clean data that’s […]
Dplyr in R
dplyr is a package in R that can be used for data exploration and data manipulation and data cleaning. It […]
Replace a Substring with another Substring in R
Problem: Pattern Matching and Replacement of an occurrence of a Substring in R with some other Substring. Solution: The Replacement […]
Math Functions in R
R comes with a whole set of Mathematical Functions. Here are some useful math functions: Seq Function Description 1 abs(x) […]
Sorting Data in a Data Frame in R
Problem: Sorting Data in a Data Frame in R Solution: To sort a Data Frame in R, we need to […]