This is the exact message:
Warning in do.call(.f, args, envir = .env) :
'what' must be a function or character string
Working in an Azure Databricks environment for data processing using R, spark and the tidyverse. This message appears even when running an empty command cell.
- Could this be coming from the cluster configuration in Databricks UI? I am loding the following libraries:
# library(sparklyr)
# library(lubridate)
# library(dplyr)
# library(purrr)
# library(httr)
# library(jsonlite)
# library(tidyr)
# library(arrow)
# library(stringr)
# library(DBI)
# library("readxl")
and I use
# if(!require(*library*)){
# install.packages(*"library"*)
# }
Is this something I should worry about with this warning or that I should be checking? I don't understand the warning and could not find the right documentation on google.