I want to filter reactive dataframe in new reactive expression and get it same name as old one.
for example:
df <- reactive({ read.csv('link' ) })
df <- reactive({
df() %>% filter(Var1=="abc")
})
It returns Infinite recursion error; Is there solution to use reactive data in reactive expression and get same name to output?