Send and read SEO data to Excel/CSV
Read your data from a CSV
#setup where to read the file
setwd("~/Desktop")
# en write the file
test <- read.csv(df, "data.csv")Export your data into a CSV
#setup where to write the file
setwd("~/Desktop")
# en write the file
write.csv(df, "data.csv")Read an excel
# the file.choose() will prompte a file selector
# the 1 say we want to load the first tab
test <- xlsx::read.xlsx(file.choose(),1)Export your data into an excel file
Import and merge a batch of CSV files
Last updated