Nothing
#' @importFrom stats na.omit
delet_na_df.mtr<-function(data){
if (any(is.na(data))){
nrow.origin=nrow(data)
data=na.omit(data)
nrow.new=nrow(data)
diff=nrow.origin-nrow.new
message()
msg=paste0(diff,' rows were deleted because of missing value.')
message(msg)
message()
message()
data
}else{
data
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.