Hi Experts,
Could you please help me R Langauge code for the attached Code
Password :
alteryx
I need a where ever we want to change the R code why means, I need a change my input file.
could you please highlight the below code where we need a change for the path, file name, and password
# install.packages(c("excel.link"),repos='https://cran.revolutionanalytics.com/',dependencies = TRUE)
library("excel.link")
df <- read.Alteryx("#1", mode="data.frame")
filename <- as.character(df[1,"FullPath"])
excel_pwd <- as.character(df[1,"excel_password"])
excel_data <- xl.read.file(filename, password = excel_pwd, write.res.password=excel_pwd)
write.Alteryx(excel_data, 1)