Hello every one,
While working on a shiny app I am facing some difficulties reading excel files from a link from DropBox and others. Here is the code below that I have used for reading the CSV file from DropBox and other platforms.
upURL <- link
if(endsWith(upURL,"dl=0")){
upURL = gsub("dl=0","dl=1",upURL)
}
datf <- read_csv(upURL,col_types = cols(.default = col_character()))
return(datf)
But in terms of excel file I am facing issues. Can anyone help me on that issue.
Thanks in advance.