How to add Prefix/Suffix to Column Names of a dataframe in R

In this tutorial we will learn how to add a prefix or a suffix to column names of a data frame in R. We will use dplyr’s rename_with() function to add prefix/suffix to column names. dplyr’s rename_with() function belongs to another renaming function in dplyr, rename() that is useful. for renaming a individual columns. First,… Continue reading How to add Prefix/Suffix to Column Names of a dataframe in R

How to Measure Running Time in R (with two examples)

Running time in R with Sys.time() and system.time()

In this tutorial, we will learn how to measure execution time in R. We will learn two ways, using Sys.time() and system.time, of measuring execution time in R. Both the methods to measure running time are readily available in base R and do need use any outside R packages. Measuring Execution Time with Sys.time() We… Continue reading How to Measure Running Time in R (with two examples)

dplyr arrange: Sort rows by one or more variables

In this tutorial, we will learn how to sort a dataframe by one or more columns using dplyr’s arrange() function. dplyr’s arrange() function is one of the important functions in dplyr that lets you use dplyr to sort rows. By sorting, we mean dplyr’s arrange() changes the order of the rows. based on. the values… Continue reading dplyr arrange: Sort rows by one or more variables

Exit mobile version