Thank You, but it's not what I was looking for.
Let me elaborate with a use-case.
my current use-case look like this:
I have a list of dates (31.01.2018 / 28.02.2018 / 31.03.2018 / ...)
I have a dataframe df, where some works are done, for example it is filtered on with the dates
this runs every month and future_me doesn't want to mess around within the script in the OPERATIONAL part
so what my idea was, is to define the date as a variable, so that I don't have to mess around with the script in the OPERATIONAL part here too
thought something like the following would't work. unfortunately i works for the right side only..
INPUT:
var_date <- quo("31.03.2018")
var_dataframe <- quo("dataframe_03")
OPERATION:
!!var_dataframe <- df %<% filter(table_date == !!var_date)...
OUTPUT:
dataframe_03
If i want a dataframe_02, I just have to change INPUT
I am not sure, if it's clear now what I am looking for...?