Please, could you help me with Qlik Sense and R integration.
I am solving Market Basket Analysis task I don't know how to return calculated results (data frame from a few columns) directly to Qlik sense from R script?
My steps:
1. In Qlik Sense I have transaction table Transactions (Tran_No; Product).
2. During load I pass this table (Transactions) to R.
3. R makes calculations (in this case market basket analysis with apriori algorithm) and the result is rules: dataframe from 5 columns (rules; support; confidence; lift; count). These rules are saved to file df_rules.csv.
4. During the same load I upload df_rules.csv as table to Qlik Sense and make visualization.
What I whant is to get the result of calculations - df_rules (step 3) directly to Qlik sense without saving to csv file or making additional transformations.
#Actually "paste(df_rules$rules,df_rules$support,df_rules$confidence,df_rules$lift,sep = "_")" is not needed. It is possible to return even string like this "return text"