Hi I am inputting data from an excel file using input tool and connecting it to R. Then I want to take the value from calumn#3 and the value from column#5 and set it equal to "total_value" and and output a new excel file. I am getting error when i run the below code. Do I need to install any packages?
input_file <- read.Alteryx("#1",mode="data.frame")
value_1 = input_file [1,3]
value_2 = input_file [1,5]
total_value = value_1 + value_2
Input file --> input.csv
| item | name | value_1 | date | value_2 |
| 1 | john | 1234 | 2022-08-03 | 5678 |
Output file --> output.csv