I am uploading one csv file and to standardize the code I want to change the column names. so I am using following code:
Prv_mnth_so1 <- reactive({data.frame(lapply(data_uploaded1(),trimws))})
colnames(Prv_mnth_so1()) <- c("GST_ward","Category","order_and_section","combo")
but this throws an error
Warning: Error in <-: invalid (NULL) left side of assignment
52: server [#12]
Error in colnames(Prv_mnth_so1()) <- c("GST_ward", "Category", "order_and_section", :
invalid (NULL) left side of assignment
it means I can't assign () operator on right side but I am not able to fix this issue
You can only change the values of a
reactive
inside thereactive
itself, because it is basically a function you evaluate (therefore you have to use the brackets).You can either 1. try to change it directly when creating
Prv_mnth_so1
or 2. later in another reactive context:1.