Hi All, Very new to EMiner,I have a requirement where the output of scorecard node need to be produced in excel/CSV files. As of now i am using code node to produce the output, by defaultly it is producing in rtf or pdf files. I understood that %EM_Register and %EM_Report macros are executing at backend to produce the desire output. in %EM_Register the default extension is .rtf i tried to change it to csv didnt suceeded. Is there any way i can modify this macros to get output in excel/csv files are do i need to write build own code node? below macros are from highlighted code node code. /* Model Parameters */ %em_register(type=data, key=params); %em_register(type=data, key=fitstat); %em_register(type=data, key=corr); %em_register(type=data, key=vif); %em_register(type=data, key=sc_data); %em_register(type=file, key=REPORT, extension=csv); /* %ModelTable(twostg=N); %sc_output(recalc=Y); %sc_print; %em_report(key=params, viewtype= DATA, autodisplay=Y, block=%bquote(RMM Reports), description=%bquote(Model Parameters), spk=&spk_keep ); %em_report(key=vif, viewtype=data, autodisplay=y, block=%bquote(RMM Reports), description=%bquote(Variance Inflation Factors table)); %em_report(key=vif, viewtype=bar, autodisplay=y, block=%bquote(RMM Reports), description=%bquote(Variance Inflation Factors plot), x=variable, freq=vif); %em_report(key=corr, viewtype=data, autodisplay=y, block=%bquote(RMM Reports), description=%bquote(Pearson Correlations table)); %em_report( key=REPORT, viewtype=fileviewer, autodisplay=Y, block=%bquote(RMM Reports), Your help is really appreciable
... View more