get same name reactive dataframe

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?

No, its not possible.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.