In this tutorial, we will learn how to randomly replace values of numerical columns in a dataframe to NAs or missing values. We will use dplyr's across() function to select only the numerical columns from a dataframe and probabilistically select certain percent of elements to … [Read more...] about How to Randomly Replace Values of Numerical Columns in a dataframe to NAs
randomly replace values to NAs
How to Randomly Replace Values in a Matrix to NAs
In this tutorial, we will see how to randomly replace values in a matrix to NAs, missing values. We will first create some data matrix by simulation. Here we create a matrix with 20 rows and 5 columns. The data matrix is complete without any missing values. To … [Read more...] about How to Randomly Replace Values in a Matrix to NAs