I want to make a generic script in which user can run all my r code in console with single click
My some R code
nil_sal_log_sqldf = sqldf("Select psno, name , unit , DOS, Field_description , log_new_value , MAX (inserted_on) as INSERTED_ON from test group by psno having log_new_value = 'Yes' ")
and many more code like this
Right now user have to copy my code and run it on console
is there any way that he can run my whole code with singe click