I'm using vis_dat package in R to plot the missing values in my dataset. This is the code I have so far.
# Load the libraries
library(visdat)
# Load the data set
data(Ionosphere)
dataset <- Ionosphere
dataset <- dataset[,-2]
dataset$V1 <- as.numeric(as.character(dataset$V1))
# Plot missing values
vis_miss(dataset, cluster = TRUE)
Running this code gives the following error. Error in vis_miss(dataset, cluster = TRUE) : could not find function "vis_miss"
Does anyone know how to fix this issue?